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

don't show image in vcard if we don't show first tab. fixes #2669

parent 40d298c2
No related branches found
No related tags found
No related merge requests found
......@@ -154,7 +154,8 @@ class VcardWindow:
def set_values(self, vcard):
for i in vcard.keys():
if i == 'PHOTO':
if i == 'PHOTO' and self.xml.get_widget('information_notebook').\
get_n_pages() > 4:
pixbuf, self.avatar_encoded, self.avatar_mime_type = \
get_avatar_pixbuf_encoded_mime(vcard[i])
image = self.xml.get_widget('PHOTO_image')
......
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