summaryrefslogtreecommitdiff
path: root/plugins/common/Resources.vala
diff options
context:
space:
mode:
authorJörg Frings-Fürst <debian@jff.email>2020-05-25 20:18:02 +0200
committerJörg Frings-Fürst <debian@jff.email>2020-05-25 20:18:02 +0200
commitd816fb9430b39a5aa7ed1c6ab4fd6ff39e804383 (patch)
treeb33dde0d7d164dabdd09bc86eb655bcb8672abbd /plugins/common/Resources.vala
parent32662cb4e6c60da265aba1e4cc6a5e05e5c7c2d1 (diff)
parent78aeec6a66a80c1494e4f5dec30e9a2f71caef41 (diff)
Merge branch 'feature/upstream' into develop
Diffstat (limited to 'plugins/common/Resources.vala')
-rw-r--r--plugins/common/Resources.vala2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/common/Resources.vala b/plugins/common/Resources.vala
index ecbf2f8..16306f2 100644
--- a/plugins/common/Resources.vala
+++ b/plugins/common/Resources.vala
@@ -58,7 +58,7 @@ public Gdk.Pixbuf[]? load_from_resource (string resource_path) {
Gdk.Pixbuf? icon = null;
try {
debug ("Loading icon from %s", resource_path);
- icon = new Gdk.Pixbuf.from_resource_at_scale (resource_path, 24, 24, true);
+ icon = new Gdk.Pixbuf.from_resource_at_scale (resource_path, -1, 24, true);
} catch (Error error) {
warning ("Couldn't load icon set from %s: %s", resource_path, error.message);
}