Skip to content
Snippets Groups Projects
Commit a01c992e authored by Yann Leboulanger's avatar Yann Leboulanger
Browse files

add Manage Bookmarks to systray popup menu

parent b2c1506d
No related branches found
No related tags found
No related merge requests found
......@@ -252,6 +252,15 @@ class Systray:
account)
break # No other connected account
newitem = gtk.SeparatorMenuItem() # separator
gc_sub_menu.append(newitem)
newitem = gtk.ImageMenuItem(_('_Manage Bookmarks...'))
img = gtk.image_new_from_stock(gtk.STOCK_PREFERENCES, gtk.ICON_SIZE_MENU)
newitem.set_image(img)
newitem.connect('activate',
gajim.interface.roster.on_manage_bookmarks_menuitem_activate)
gc_sub_menu.append(newitem)
sounds_mute_menuitem.set_active(not gajim.config.get('sounds_on'))
if os.name == 'nt':
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment