From 5a2e16b8405236a76c09de77120a03e50254c5bf Mon Sep 17 00:00:00 2001 From: Michael Webster Date: Tue, 28 May 2024 14:10:26 +0200 Subject: Fix hidpi rendering of session badges. Most of the more common desktops provide a scalable icon, so they can be rendered in hidpi. --- src/prompt-box.vala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/prompt-box.vala') diff --git a/src/prompt-box.vala b/src/prompt-box.vala index 267dab8..601464e 100644 --- a/src/prompt-box.vala +++ b/src/prompt-box.vala @@ -394,7 +394,7 @@ public class PromptBox : FadableBox if (option_button == null) return; - option_image.pixbuf = image; + option_image.set_pixbuf (image); if (tooltip == null) option_image.set_tooltip_text(""); -- cgit v1.2.3