-
-
Notifications
You must be signed in to change notification settings - Fork 14.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #143922 from bobby285271/pantheon
Pantheon updates 2021-10-30
- Loading branch information
Showing
4 changed files
with
59 additions
and
53 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
26 changes: 26 additions & 0 deletions
26
pkgs/desktops/pantheon/desktop/wingpanel-indicators/datetime/fix-incorrect-month.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
From 401cb05d7181e69ae8edd347644f2518904e9acb Mon Sep 17 00:00:00 2001 | ||
From: Jeremy Paul Wootten <[email protected]> | ||
Date: Sat, 30 Oct 2021 17:44:12 +0100 | ||
Subject: [PATCH] Reset position and relative position after rebuilding | ||
carousel | ||
|
||
--- | ||
src/Widgets/calendar/CalendarView.vala | 4 ++++ | ||
1 file changed, 4 insertions(+) | ||
|
||
diff --git a/src/Widgets/calendar/CalendarView.vala b/src/Widgets/calendar/CalendarView.vala | ||
index a41b37a4..f946b91c 100644 | ||
--- a/src/Widgets/calendar/CalendarView.vala | ||
+++ b/src/Widgets/calendar/CalendarView.vala | ||
@@ -216,7 +216,11 @@ public class DateTime.Widgets.CalendarView : Gtk.Grid { | ||
carousel.add (right_grid); | ||
carousel.scroll_to (start_month_grid); | ||
label.label = calmodel.month_start.format (_("%OB, %Y")); | ||
+ | ||
+ position = 1; | ||
+ rel_postion = 0; | ||
} | ||
+ | ||
carousel.no_show_all = false; | ||
} | ||
|