aboutsummaryrefslogtreecommitdiffstats
path: root/shell
diff options
context:
space:
mode:
authorFederico Mena Quintero <federico@ximian.com>2001-07-01 02:29:39 +0800
committerFederico Mena Quintero <federico@src.gnome.org>2001-07-01 02:29:39 +0800
commit786e6eada9bdc85f6ecc50275dbe88a1000725ea (patch)
tree79d4607b4593f7cf4e73ae8b0e78843de36b12e4 /shell
parent60015405ac234f17a6b9c84ca02642103b9dba9d (diff)
downloadgsoc2013-evolution-786e6eada9bdc85f6ecc50275dbe88a1000725ea.tar
gsoc2013-evolution-786e6eada9bdc85f6ecc50275dbe88a1000725ea.tar.gz
gsoc2013-evolution-786e6eada9bdc85f6ecc50275dbe88a1000725ea.tar.bz2
gsoc2013-evolution-786e6eada9bdc85f6ecc50275dbe88a1000725ea.tar.lz
gsoc2013-evolution-786e6eada9bdc85f6ecc50275dbe88a1000725ea.tar.xz
gsoc2013-evolution-786e6eada9bdc85f6ecc50275dbe88a1000725ea.tar.zst
gsoc2013-evolution-786e6eada9bdc85f6ecc50275dbe88a1000725ea.zip
Pass the event time to gtk_menu_popup() so that we can release the button
2001-06-30 Federico Mena Quintero <federico@ximian.com> * e-storage-set-view.c (popup_folder_menu): Pass the event time to gtk_menu_popup() so that we can release the button and have the menu stay up. svn path=/trunk/; revision=10633
Diffstat (limited to 'shell')
-rw-r--r--shell/ChangeLog6
-rw-r--r--shell/e-storage-set-view.c2
2 files changed, 7 insertions, 1 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog
index 348efdae13..803c0c7d39 100644
--- a/shell/ChangeLog
+++ b/shell/ChangeLog
@@ -1,3 +1,9 @@
+2001-06-30 Federico Mena Quintero <federico@ximian.com>
+
+ * e-storage-set-view.c (popup_folder_menu): Pass the event time to
+ gtk_menu_popup() so that we can release the button and have the
+ menu stay up.
+
2001-06-29 Ettore Perazzoli <ettore@ximian.com>
This is a first shoot at making shortcuts renameable [#3719];
diff --git a/shell/e-storage-set-view.c b/shell/e-storage-set-view.c
index b0f2a5c547..5b5e117c1b 100644
--- a/shell/e-storage-set-view.c
+++ b/shell/e-storage-set-view.c
@@ -728,7 +728,7 @@ popup_folder_menu (EStorageSetView *storage_set_view,
e_folder_get_type_string (folder));
gtk_widget_show (GTK_WIDGET (menu));
- gtk_menu_popup (GTK_MENU (menu), NULL, NULL, NULL, NULL, 3, 0);
+ gtk_menu_popup (GTK_MENU (menu), NULL, NULL, NULL, NULL, 3, event->time);
}