diff options
author | raveit65 <[email protected]> | 2017-07-01 10:24:16 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2017-07-02 10:25:03 +0200 |
commit | 0d3884f96b01324cb0a3b7be426d20e07642f01b (patch) | |
tree | d8b1356e6c117fc6311eff512862ab59d3965532 /applets/clock/calendar-window.c | |
parent | 99539628335c5c2e8dac7f4690610e6d153ffc8d (diff) | |
download | mate-panel-0d3884f96b01324cb0a3b7be426d20e07642f01b.tar.bz2 mate-panel-0d3884f96b01324cb0a3b7be426d20e07642f01b.tar.xz |
clock: set a default width for calendarWindow
fixes https://github.com/mate-desktop/mate-panel/issues/594
Diffstat (limited to 'applets/clock/calendar-window.c')
-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); |