do not do the same thing twice
This commit is contained in:
parent
9993b65022
commit
ce66db017e
1 changed files with 3 additions and 3 deletions
|
@ -280,11 +280,11 @@ class TabbedChatWindow(chat.Chat):
|
||||||
ratio = float(pixbuf.get_width()) / float(pixbuf.get_height())
|
ratio = float(pixbuf.get_width()) / float(pixbuf.get_height())
|
||||||
if ratio > 1:
|
if ratio > 1:
|
||||||
w = gajim.config.get('avatar_width')
|
w = gajim.config.get('avatar_width')
|
||||||
h = int(w/ratio)
|
h = int(w / ratio)
|
||||||
else:
|
else:
|
||||||
h = gajim.config.get('avatar_height')
|
h = gajim.config.get('avatar_height')
|
||||||
w = int(h*ratio)
|
w = int(h * ratio)
|
||||||
scaled_buf = pixbuf.scale_simple(int(w), int(h), gtk.gdk.INTERP_HYPER)
|
scaled_buf = pixbuf.scale_simple(w, h, gtk.gdk.INTERP_HYPER)
|
||||||
|
|
||||||
image = xml.get_widget('avatar_image')
|
image = xml.get_widget('avatar_image')
|
||||||
image.set_from_pixbuf(scaled_buf)
|
image.set_from_pixbuf(scaled_buf)
|
||||||
|
|
Loading…
Add table
Reference in a new issue