diff options
author | Jörg Frings-Fürst <debian@jff.email> | 2020-05-31 12:05:32 +0200 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff.email> | 2020-05-31 12:05:32 +0200 |
commit | a03d7d2e5151332bbe89e5bc36965956cfa7af35 (patch) | |
tree | 1667c3a269ad810db3a7a4a592a5721955dbdf01 /plugins/common/Resources.vala | |
parent | 2db2a00a812ec31ee59c3920ff457290e1f4a05e (diff) | |
parent | a99b581716d7972a62ed6c227a807e304a98d6af (diff) |
Merge branch 'release/debian/0.30.10-1'debian/0.30.10-1
Diffstat (limited to 'plugins/common/Resources.vala')
-rw-r--r-- | plugins/common/Resources.vala | 2 |
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); } |