diff options
author | Iain Holmes <iain@src.gnome.org> | 2000-10-26 07:03:33 +0800 |
---|---|---|
committer | Iain Holmes <iain@src.gnome.org> | 2000-10-26 07:03:33 +0800 |
commit | 20394851919f80269d11aa460e60f2bd1e46b7dc (patch) | |
tree | 6b3fc7cd84913f288434f58e5a4a9cb86604b073 /composer/e-msg-composer-select-file.c | |
parent | 8ab09706d1ddaa55f1e76dc395fdee2104e4d105 (diff) | |
download | gsoc2013-evolution-20394851919f80269d11aa460e60f2bd1e46b7dc.tar.gz gsoc2013-evolution-20394851919f80269d11aa460e60f2bd1e46b7dc.tar.zst gsoc2013-evolution-20394851919f80269d11aa460e60f2bd1e46b7dc.zip |
Summary is back in :D
Fixed a silly size issue for composer file selectors.
svn path=/trunk/; revision=6187
Diffstat (limited to 'composer/e-msg-composer-select-file.c')
-rw-r--r-- | composer/e-msg-composer-select-file.c | 2 |
1 files changed, 2 insertions, 0 deletions
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; |