diff --git a/image/image.py b/image/image.py index 5fc4c1a..8fe1139 100644 --- a/image/image.py +++ b/image/image.py @@ -62,7 +62,7 @@ class Base(object): self.button.set_property('relief', gtk.RELIEF_NONE) self.button.set_property('can-focus', False) img = gtk.Image() - img.set_from_stock('gtk-orientation-portrait', gtk.ICON_SIZE_BUTTON) + img.set_from_stock('gtk-orientation-portrait', gtk.ICON_SIZE_MENU) self.button.set_image(img) self.button.set_tooltip_text('Send image') send_button = chat_control.xml.get_object('send_button') diff --git a/image/manifest.ini b/image/manifest.ini index 80d24bb..82c1379 100644 --- a/image/manifest.ini +++ b/image/manifest.ini @@ -1,7 +1,7 @@ [info] name: Image short_name: image -version: 0.1 +version: 0.2 description: This plugin is designed to send a small(0 - 40 kb) graphic image to your contact. Client on the other side must support XEP-0071: XHTML-IM and maintain the scheme data: URI. Psi+ and Jabbim supported this. diff --git a/juick/manifest.ini b/juick/manifest.ini index 0498121..e6d396c 100644 --- a/juick/manifest.ini +++ b/juick/manifest.ini @@ -1,7 +1,7 @@ [info] name: Juick short_name: Juick -version: 0.7 +version: 0.8 description: Clickable juick links , juick nics, preview juick picturs. The key combination alt + up in the textbox allow insert the number of last message (comment or topic). authors: Denis Fomin diff --git a/juick/plugin.py b/juick/plugin.py index 4a28203..d058f60 100644 --- a/juick/plugin.py +++ b/juick/plugin.py @@ -171,7 +171,7 @@ class Base(object): factory = gtk.IconFactory() factory.add('juick', iconset) factory.add_default() - img.set_from_stock('juick', gtk.ICON_SIZE_BUTTON) + img.set_from_stock('juick', gtk.ICON_SIZE_MENU) self.button.set_image(img) self.button.set_tooltip_text(_('Juick commands')) send_button = self.chat_control.xml.get_object('send_button') @@ -192,7 +192,7 @@ class Base(object): iconset = gtk.IconSet(pixbuf=pixbuf) factory.add('juick_tag', iconset) factory.add_default() - img.set_from_stock('juick_tag', gtk.ICON_SIZE_BUTTON) + img.set_from_stock('juick_tag', gtk.ICON_SIZE_MENU) self.tag_button.set_image(img) actions_hbox.add_with_properties(self.tag_button, 'position', send_button_pos - 1, 'expand', False)