diff options
author | TingPing <tngpng@gmail.com> | 2013-02-06 12:58:14 -0500 |
---|---|---|
committer | TingPing <tngpng@gmail.com> | 2013-02-06 12:58:14 -0500 |
commit | 3f60c59908adce60783c854747235e5bd66dada4 (patch) | |
tree | ee2f708a1c73dba4af37414de9e0845baac6544f /src/fe-gtk/plugin-tray.c | |
parent | 1d563b2e14ec973639082c99a241c26961ada578 (diff) |
fix tray menu placement issues
notably top taskbar issues on windows
Diffstat (limited to 'src/fe-gtk/plugin-tray.c')
-rw-r--r-- | src/fe-gtk/plugin-tray.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fe-gtk/plugin-tray.c b/src/fe-gtk/plugin-tray.c index c5109fb8..3c9bed38 100644 --- a/src/fe-gtk/plugin-tray.c +++ b/src/fe-gtk/plugin-tray.c @@ -642,7 +642,7 @@ tray_menu_cb (GtkWidget *widget, guint button, guint time, gpointer userdata) tray_menu_timer = g_timeout_add(500, (GSourceFunc) tray_check_hide, menu); #endif - gtk_menu_popup (GTK_MENU (menu), NULL, NULL, gtk_status_icon_position_menu, + gtk_menu_popup (GTK_MENU (menu), NULL, NULL, NULL, userdata, button, time); } |