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()