From c9e30fd612198bf29c7a17433a73c0fb692de2fb Mon Sep 17 00:00:00 2001 From: Nikos Kouremenos <kourem@gmail.com> Date: Tue, 29 Nov 2005 18:37:01 +0000 Subject: [PATCH] make a commit comment a code comment. also add a new line so it is visually better to seperate logic and return --- src/gtkgui_helpers.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/gtkgui_helpers.py b/src/gtkgui_helpers.py index 6b8ccd317d..75a8725550 100644 --- a/src/gtkgui_helpers.py +++ b/src/gtkgui_helpers.py @@ -412,9 +412,11 @@ def get_scaled_pixbuf(pixbuf, type): # resize to a width / height for the avatar not to have distortion # (keep aspect ratio) + # don't make avatars bigger than they are if pixbuf.get_width() < gajim.config.get(type + '_avatar_width') and \ pixbuf.get_height() < gajim.config.get(type + '_avatar_height'): return pixbuf # we don't want to make avatar bigger + ratio = float(pixbuf.get_width()) / float(pixbuf.get_height()) if ratio > 1: w = gajim.config.get(type + '_avatar_width') -- GitLab