Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenis Fomin <fominde@gmail.com>2011-05-26 13:35:33 +0400
committerDenis Fomin <fominde@gmail.com>2011-05-26 13:35:33 +0400
commit490e74ff8f56a52e96e70291d7e645ca751cd80a (patch)
tree4068671f6a93b16b22ac117f5856230c21051beb
parent615f530cc58d77cea7af9653a9ef06b7b12a1015 (diff)
change add to bookmarks icon in the gc context menu
-rw-r--r--src/groupchat_control.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/groupchat_control.py b/src/groupchat_control.py
index 37c744a99..b63214021 100644
--- a/src/groupchat_control.py
+++ b/src/groupchat_control.py
@@ -801,6 +801,11 @@ class GroupchatControl(ChatControlBase):
separatormenuitem2 = xml.get_object('separatormenuitem2')
request_voice_separator = xml.get_object('request_voice_separator')
+ if gtkgui_helpers.gtk_icon_theme.has_icon('bookmark-new'):
+ img = gtk.Image()
+ img.set_from_icon_name('bookmark-new', gtk.ICON_SIZE_MENU)
+ bookmark_room_menuitem.set_image(img)
+
if hide_buttonbar_items:
change_nick_menuitem.hide()
change_subject_menuitem.hide()