diff options
author | raveit65 <[email protected]> | 2017-07-01 10:24:16 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2017-07-02 10:32:28 +0200 |
commit | 212ab42f7e5d1d941140d0cd44ffab0d58c227bb (patch) | |
tree | efe94903cff1ffcda894a4331b54047772eb7b7d | |
parent | 495b9b0fcb22ada6ef084735d3ba456f0c22cf04 (diff) | |
download | mate-panel-212ab42f7e5d1d941140d0cd44ffab0d58c227bb.tar.bz2 mate-panel-212ab42f7e5d1d941140d0cd44ffab0d58c227bb.tar.xz |
clock: set a default width for calendarWindow
fixes https://github.com/mate-desktop/mate-panel/issues/594
-rw-r--r-- | applets/clock/calendar-window.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/applets/clock/calendar-window.c b/applets/clock/calendar-window.c index 3c3b0566..67389efb 100644 --- a/applets/clock/calendar-window.c +++ b/applets/clock/calendar-window.c @@ -481,6 +481,7 @@ calendar_window_init (CalendarWindow *calwin) gtk_window_set_type_hint (window, GDK_WINDOW_TYPE_HINT_DOCK); gtk_window_set_decorated (window, FALSE); gtk_window_set_resizable (window, FALSE); + gtk_window_set_default_size (window, 337, -1); gtk_window_stick (window); gtk_window_set_title (window, _("Calendar")); gtk_window_set_icon_name (window, CLOCK_ICON); |