From df7c60bead4a3da0a927b7e49b372ed97b8d7e28 Mon Sep 17 00:00:00 2001 From: Patrick Ulbrich Date: Sat, 14 Jan 2012 19:51:54 +0100 Subject: [PATCH] crop a little less --- Mailnag/configuration/configwindow.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mailnag/configuration/configwindow.py b/Mailnag/configuration/configwindow.py index b5885e8..5d6d3d5 100644 --- a/Mailnag/configuration/configwindow.py +++ b/Mailnag/configuration/configwindow.py @@ -108,7 +108,7 @@ class ConfigWindow: # self._image_logo = builder.get_object("image_logo") pb = GdkPixbuf.Pixbuf.new_from_file_at_size(get_data_file("mailnag.svg"), 180, 180) - pb = pb.new_subpixbuf(0, 0, 180, 150) # crop whitespace at the bottom + pb = pb.new_subpixbuf(0, 0, 180, 160) # crop whitespace at the bottom self._image_logo.set_from_pixbuf(pb) self._label_app_desc = builder.get_object("label_app_desc") self._label_app_desc.set_markup("Mailnag\nVersion %s" % str(APP_VERSION))