From 7100d13e3c6a665c1fbedb259096e642f36bbd48 Mon Sep 17 00:00:00 2001 From: Milan Crha Date: Tue, 23 Feb 2010 16:29:08 +0100 Subject: Bug #594083 - Oversized main window on startup --- shell/e-shell-taskbar.c | 3 +++ 1 file changed, 3 insertions(+) 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 -- cgit