From 68a666d04a8ac8496439e9804470ddd405fcf8ad Mon Sep 17 00:00:00 2001 From: Denis Fomin Date: Thu, 16 Aug 2012 16:36:01 +0400 Subject: [PATCH] Juick. add plugin icon --- juick/{favicon.png => juick.png} | Bin juick/manifest.ini | 2 +- juick/plugin.py | 2 +- 3 files changed, 2 insertions(+), 2 deletions(-) rename juick/{favicon.png => juick.png} (100%) diff --git a/juick/favicon.png b/juick/juick.png similarity index 100% rename from juick/favicon.png rename to juick/juick.png diff --git a/juick/manifest.ini b/juick/manifest.ini index 710f61f..d539201 100644 --- a/juick/manifest.ini +++ b/juick/manifest.ini @@ -1,7 +1,7 @@ [info] name: Juick short_name: Juick -version: 0.9.1 +version: 0.9.2 description: Clickable Juick links , Juick nicks, 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 9129088..94cdb2d 100644 --- a/juick/plugin.py +++ b/juick/plugin.py @@ -166,7 +166,7 @@ class Base(object): self.button.set_property('relief', gtk.RELIEF_NONE) self.button.set_property('can-focus', False) img = gtk.Image() - img_path = self.plugin.local_file_path('favicon.png') + img_path = self.plugin.local_file_path('juick.png') pixbuf = gtk.gdk.pixbuf_new_from_file(img_path) iconset = gtk.IconSet(pixbuf=pixbuf) factory = gtk.IconFactory()