diff options
Diffstat (limited to 'shell/main.c')
-rw-r--r-- | shell/main.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/shell/main.c b/shell/main.c index f1b70bf271..75b5f1490b 100644 --- a/shell/main.c +++ b/shell/main.c @@ -75,6 +75,10 @@ quit_box_new (void) window = gtk_window_new (GTK_WINDOW_TOPLEVEL); gtk_window_set_position (GTK_WINDOW (window), GTK_WIN_POS_CENTER); + /* (Just to prevent smart-ass window managers like Sawfish from setting + the make the dialog as big as the standard Evolution window). */ + gtk_window_set_wmclass (GTK_WINDOW (window), "evolution-quit", "Evolution:quit"); + e_make_widget_backing_stored (window); gtk_window_set_title (GTK_WINDOW (window), _("Evolution")); |