diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2001-10-16 06:30:41 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2001-10-16 06:30:41 +0800 |
commit | ea2f6819c033b50ca2723a28bc9231c15a5c1241 (patch) | |
tree | 7068b811cded51ca8c5dd589c9392d125fad8aa8 | |
parent | f74417fca812a029732742fcffa433997f91e362 (diff) | |
download | gsoc2013-evolution-ea2f6819c033b50ca2723a28bc9231c15a5c1241.tar gsoc2013-evolution-ea2f6819c033b50ca2723a28bc9231c15a5c1241.tar.gz gsoc2013-evolution-ea2f6819c033b50ca2723a28bc9231c15a5c1241.tar.bz2 gsoc2013-evolution-ea2f6819c033b50ca2723a28bc9231c15a5c1241.tar.lz gsoc2013-evolution-ea2f6819c033b50ca2723a28bc9231c15a5c1241.tar.xz gsoc2013-evolution-ea2f6819c033b50ca2723a28bc9231c15a5c1241.tar.zst gsoc2013-evolution-ea2f6819c033b50ca2723a28bc9231c15a5c1241.zip |
Kludge to raise the filter dialog when the folder-selection window is
2001-10-15 Jeffrey Stedfast <fejj@ximian.com>
* filter-folder.c (button_clicked): Kludge to raise the filter
dialog when the folder-selection window is closed.
svn path=/trunk/; revision=13688
-rw-r--r-- | filter/ChangeLog | 5 | ||||
-rw-r--r-- | filter/filter-folder.c | 3 |
2 files changed, 7 insertions, 1 deletions
diff --git a/filter/ChangeLog b/filter/ChangeLog index 9dbdd81358..faf77c3f95 100644 --- a/filter/ChangeLog +++ b/filter/ChangeLog @@ -1,3 +1,8 @@ +2001-10-15 Jeffrey Stedfast <fejj@ximian.com> + + * filter-folder.c (button_clicked): Kludge to raise the filter + dialog when the folder-selection window is closed. + 2001-10-15 <NotZed@Ximian.com> * filter-input.c (xml_decode): If we have no node content, dont diff --git a/filter/filter-folder.c b/filter/filter-folder.c index 04a1dfb088..1d231e7bdf 100644 --- a/filter/filter-folder.c +++ b/filter/filter-folder.c @@ -286,8 +286,9 @@ button_clicked (GtkButton *button, FilterFolder *ff) case -1: /* nothing */ } - #endif + + gdk_window_raise (GTK_WIDGET (gtk_widget_get_ancestor (GTK_WIDGET (button), GTK_TYPE_WINDOW))->window); } static GtkWidget * |