aboutsummaryrefslogtreecommitdiff
path: root/src/idoremovablemenuitem.c
diff options
context:
space:
mode:
authorRobert Tari <robert@tari.in>2023-08-05 02:03:39 +0200
committerRobert Tari <robert@tari.in>2023-08-05 02:04:19 +0200
commite487b162ba82a1a454657a8ab5dbd6d04a17b591 (patch)
tree89f3201214321fbc0384562f70164f2f057d0711 /src/idoremovablemenuitem.c
parentebb915b50119f79968a8e93697a90660eab93872 (diff)
downloadayatana-ido-e487b162ba82a1a454657a8ab5dbd6d04a17b591.tar.gz
ayatana-ido-e487b162ba82a1a454657a8ab5dbd6d04a17b591.tar.bz2
ayatana-ido-e487b162ba82a1a454657a8ab5dbd6d04a17b591.zip
Do not hardcode icon sizes
fixes https://github.com/AyatanaIndicators/ayatana-indicator-sound/issues/89
Diffstat (limited to 'src/idoremovablemenuitem.c')
-rw-r--r--src/idoremovablemenuitem.c21
1 files changed, 4 insertions, 17 deletions
diff --git a/src/idoremovablemenuitem.c b/src/idoremovablemenuitem.c
index 946ffb3..d857fd4 100644
--- a/src/idoremovablemenuitem.c
+++ b/src/idoremovablemenuitem.c
@@ -1,8 +1,10 @@
/*
* Copyright 2013 Canonical Ltd.
+ * Copyright 2023 Robert Tari
*
* Authors:
* Charles Kerr <charles.kerr@canonical.com>
+ * Robert Tari <robert@tari.in>
*
* This program is free software: you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 3, as published
@@ -131,23 +133,8 @@ static void idoRemovableMenuItemStyleUpdateImage(IdoRemovableMenuItem *self)
}
else
{
- GtkIconInfo *pInfo;
- const gchar *sFilename;
-
- pInfo = gtk_icon_theme_lookup_by_gicon(gtk_icon_theme_get_default(), pPrivate->pIcon, 16, 0);
- sFilename = gtk_icon_info_get_filename(pInfo);
-
- if (sFilename)
- {
- GdkPixbuf *pPixbuf;
-
- pPixbuf = gdk_pixbuf_new_from_file_at_scale(sFilename, -1, 16, TRUE, NULL);
- gtk_image_set_from_pixbuf(GTK_IMAGE(pPrivate->pImage), pPixbuf);
- g_object_unref (pPixbuf);
- }
-
- gtk_widget_set_visible(pPrivate->pImage, sFilename != NULL);
- g_object_unref(pInfo);
+ gtk_image_set_from_gicon (GTK_IMAGE (pPrivate->pImage), pPrivate->pIcon, GTK_ICON_SIZE_MENU);
+ gtk_widget_set_visible (pPrivate->pImage, TRUE);
}
}