From cf508c1d229df5f4f645b7a66d568c1959bc6f62 Mon Sep 17 00:00:00 2001 From: Marco Pesenti Gritti Date: Tue, 31 Oct 2006 23:18:43 +0100 Subject: [PATCH] Do not resize the icon, use the original icon size. --- services/nm/nmclient.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/nm/nmclient.py b/services/nm/nmclient.py index 44f56ad1..e02a4422 100644 --- a/services/nm/nmclient.py +++ b/services/nm/nmclient.py @@ -398,7 +398,7 @@ class NMClientApp: info = self._icon_theme.lookup_icon(name, 75, 0) if not info or not info.get_filename(): raise RuntimeError - return gtk.gdk.pixbuf_new_from_file_at_size(info.get_filename(), 75, 75) + return gtk.gdk.pixbuf_new_from_file(info.get_filename()) def _load_icons(self): icons = {}