diff --git a/src/gajim.py b/src/gajim.py index 20b1ebe07..572826d78 100755 --- a/src/gajim.py +++ b/src/gajim.py @@ -1963,9 +1963,10 @@ class Interface: self.show_vcard_when_connect = [] - path_to_file = os.path.join(gajim.DATA_DIR, 'pixmaps/gajim.png') + path_to_file = os.path.join(gajim.DATA_DIR, 'pixmaps', 'gajim.png') pix = gtk.gdk.pixbuf_new_from_file(path_to_file) - gtk.window_set_default_icon(pix) # set the icon to all newly opened windows + # set the icon to all newly opened windows + gtk.window_set_default_icon(pix) self.roster.window.set_icon_from_file(path_to_file) # and to roster window self.sleeper = common.sleepy.Sleepy( gajim.config.get('autoawaytime') * 60, # make minutes to seconds