diff options
author | Milan Crha <mcrha@redhat.com> | 2010-02-23 23:29:08 +0800 |
---|---|---|
committer | Milan Crha <mcrha@redhat.com> | 2010-02-23 23:29:08 +0800 |
commit | 7100d13e3c6a665c1fbedb259096e642f36bbd48 (patch) | |
tree | 4aab315d71c586f96567380f612cb869b4e049aa /shell | |
parent | b168fcbe1b705ba710d1e7b1b3e4feeb32c13276 (diff) | |
download | gsoc2013-evolution-7100d13e3c6a665c1fbedb259096e642f36bbd48.tar.gz gsoc2013-evolution-7100d13e3c6a665c1fbedb259096e642f36bbd48.tar.zst gsoc2013-evolution-7100d13e3c6a665c1fbedb259096e642f36bbd48.zip |
Bug #594083 - Oversized main window on startup
Diffstat (limited to 'shell')
-rw-r--r-- | shell/e-shell-taskbar.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/shell/e-shell-taskbar.c b/shell/e-shell-taskbar.c index 9413394307..53ccae67c8 100644 --- a/shell/e-shell-taskbar.c +++ b/shell/e-shell-taskbar.c @@ -225,6 +225,9 @@ shell_taskbar_constructed (GObject *object) g_signal_connect_swapped ( shell_backend, "activity-added", G_CALLBACK (shell_taskbar_activity_add), shell_taskbar); + + /* to not enlarge window width on new activities */ + gtk_widget_set_size_request (GTK_WIDGET (shell_taskbar), 0, -1); } static void |