Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/services/nm
diff options
context:
space:
mode:
authorMarco Pesenti Gritti <marco@localhost.localdomain>2006-10-31 22:18:43 (GMT)
committer Marco Pesenti Gritti <marco@localhost.localdomain>2006-10-31 22:18:43 (GMT)
commitcf508c1d229df5f4f645b7a66d568c1959bc6f62 (patch)
tree0ef68ef4dfd7630a3faa5b7dd644829c75404576 /services/nm
parent85719207344f324918fdb87df3669c2f3e86a7bb (diff)
Do not resize the icon, use the original icon size.
Diffstat (limited to 'services/nm')
-rw-r--r--services/nm/nmclient.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/services/nm/nmclient.py b/services/nm/nmclient.py
index 44f56ad..e02a442 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 = {}