aboutsummaryrefslogtreecommitdiffstats
path: root/composer
diff options
context:
space:
mode:
Diffstat (limited to 'composer')
-rw-r--r--composer/ChangeLog6
-rw-r--r--composer/e-msg-composer-select-file.c2
2 files changed, 8 insertions, 0 deletions
diff --git a/composer/ChangeLog b/composer/ChangeLog
index 14a48e7fbe..7df6f413f0 100644
--- a/composer/ChangeLog
+++ b/composer/ChangeLog
@@ -1,3 +1,9 @@
+2000-10-25 Iain Holmes <iain@helixcode.com>
+
+ * e-msg-composer-select-file.c (create_file_selection): Set the
+ wmclass and wmclass_name for the file selectors so that Sawfish
+ doesn't make the dialogs the same size as the parent.
+
2000-10-25 Dan Winship <danw@helixcode.com>
* evolution-composer.c (init): Attach send/postpone signal
diff --git a/composer/e-msg-composer-select-file.c b/composer/e-msg-composer-select-file.c
index e9f4e421a3..36b53c8446 100644
--- a/composer/e-msg-composer-select-file.c
+++ b/composer/e-msg-composer-select-file.c
@@ -106,6 +106,8 @@ create_file_selection (EMsgComposer *composer)
info = g_new (FileSelectionInfo, 1);
widget = gtk_file_selection_new (NULL);
+ gtk_window_set_wmclass (GTK_WINDOW (widget), "fileselection",
+ "Evolution:composer");
ok_button = GTK_FILE_SELECTION (widget)->ok_button;
cancel_button = GTK_FILE_SELECTION (widget)->cancel_button;