From 0a5c8356eb3a86f1906733e76d2f802e9f986534 Mon Sep 17 00:00:00 2001 From: TingPing Date: Thu, 22 Nov 2012 02:49:41 -0500 Subject: add preferences to tray menu --- src/fe-gtk/plugin-tray.c | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/fe-gtk/plugin-tray.c b/src/fe-gtk/plugin-tray.c index 5c0d02ce..0e697a11 100644 --- a/src/fe-gtk/plugin-tray.c +++ b/src/fe-gtk/plugin-tray.c @@ -526,6 +526,13 @@ tray_check_hide (GtkWidget *menu) } #endif +static void +tray_menu_settings (GtkWidget * wid, gpointer none) +{ + extern void setup_open (void); + setup_open (); +} + static void tray_menu_cb (GtkWidget *widget, guint button, guint time, gpointer userdata) { @@ -573,6 +580,8 @@ tray_menu_cb (GtkWidget *widget, guint button, guint time, gpointer userdata) tray_make_item (menu, NULL, tray_menu_quit_cb, NULL); #endif + mg_create_icon_item (_("_Preferences"), GTK_STOCK_PREFERENCES, menu, tray_menu_settings, NULL); + tray_make_item (menu, NULL, tray_menu_quit_cb, NULL); mg_create_icon_item (_("_Quit"), GTK_STOCK_QUIT, menu, tray_menu_quit_cb, NULL); menu_add_plugin_items (menu, "\x5$TRAY", NULL); -- cgit 1.4.1