80 margin
This commit is contained in:
parent
5b49eaae1c
commit
0e1a0c66ee
1 changed files with 3 additions and 2 deletions
|
@ -1963,9 +1963,10 @@ class Interface:
|
||||||
|
|
||||||
self.show_vcard_when_connect = []
|
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)
|
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.roster.window.set_icon_from_file(path_to_file) # and to roster window
|
||||||
self.sleeper = common.sleepy.Sleepy(
|
self.sleeper = common.sleepy.Sleepy(
|
||||||
gajim.config.get('autoawaytime') * 60, # make minutes to seconds
|
gajim.config.get('autoawaytime') * 60, # make minutes to seconds
|
||||||
|
|
Loading…
Add table
Reference in a new issue