diff options
author | Rodney Dawes <dobey@ximian.com> | 2004-01-28 06:58:06 +0800 |
---|---|---|
committer | Rodney Dawes <dobey@src.gnome.org> | 2004-01-28 06:58:06 +0800 |
commit | a91380ebe5a3c30b37d02964cadd712f7c9a60fa (patch) | |
tree | 56222a7d0028cb08aabe5324ee72860a1e0536b8 | |
parent | 3bc16533b5ca7ecf33700a590e9840c8cce7186d (diff) | |
download | gsoc2013-evolution-a91380ebe5a3c30b37d02964cadd712f7c9a60fa.tar.gz gsoc2013-evolution-a91380ebe5a3c30b37d02964cadd712f7c9a60fa.tar.zst gsoc2013-evolution-a91380ebe5a3c30b37d02964cadd712f7c9a60fa.zip |
Use button->time for the mouse click event, so that the popup stays up on
2004-01-27 Rodney Dawes <dobey@ximian.com>
* gal/e-text/e-text.c (popup_targets_received): Use button->time for
the mouse click event, so that the popup stays up on button release
Fixes #47548
svn path=/trunk/; revision=24483
-rw-r--r-- | widgets/text/e-text.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/widgets/text/e-text.c b/widgets/text/e-text.c index 05e5855d9f..45d43ac523 100644 --- a/widgets/text/e-text.c +++ b/widgets/text/e-text.c @@ -2693,7 +2693,7 @@ popup_targets_received (GtkClipboard *clipboard, } else { gtk_menu_popup (GTK_MENU (popup_menu), NULL, NULL, NULL, NULL, - button->button, GDK_CURRENT_TIME); + button->button, button->time); } g_object_unref (text); |