Skip to content
Snippets Groups Projects
Commit 29f41b22 authored by Yann Leboulanger's avatar Yann Leboulanger
Browse files

we can now disable avatars by setting width or height to 0. Partially fixes #1816

parent 8ad5dec7
No related branches found
No related tags found
No related merge requests found
......@@ -1053,15 +1053,17 @@ class Interface:
path_to_original_file = path_to_file + '.' + typ
pixbuf.save(path_to_original_file, typ)
# Generate and save the resized, color avatar
path_to_normal_file = path_to_file + '_notif_size_colored.png'
pixbuf = gtkgui_helpers.get_scaled_pixbuf(
gtkgui_helpers.get_pixbuf_from_data(photo_decoded), 'notification')
pixbuf.save(path_to_normal_file, 'png')
if pixbuf:
path_to_normal_file = path_to_file + '_notif_size_colored.png'
pixbuf.save(path_to_normal_file, 'png')
# Generate and save the resized, black and white avatar
path_to_bw_file = path_to_file + '_notif_size_bw.png'
bwbuf = gtkgui_helpers.get_scaled_pixbuf(
gtkgui_helpers.make_pixbuf_grayscale(pixbuf), 'notification')
bwbuf.save(path_to_bw_file, 'png')
if bwbuf:
path_to_bw_file = path_to_file + '_notif_size_bw.png'
bwbuf.save(path_to_bw_file, 'png')
def add_event(self, account, jid, typ, args):
'''add an event to the awaiting_events var'''
......
......@@ -224,8 +224,10 @@ class VcardWindow:
dialogs.ErrorDialog(_('Could not load image'), msg)
continue
else:
path_to_file = os.path.join(gajim.TMP, 'avatar_scaled.png')
scaled_pixbuf.save(path_to_file, 'png')
if scaled_pixbuf:
path_to_file = os.path.join(gajim.TMP,
'avatar_scaled.png')
scaled_pixbuf.save(path_to_file, 'png')
done = True
else:
done = True
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment