diff options
author | Aylur <[email protected]> | 2024-08-22 01:52:19 +0200 |
---|---|---|
committer | Aylur <[email protected]> | 2024-08-22 02:14:50 +0200 |
commit | 6dd5200fa30c48e1cd9a2f820c62c54b0974c925 (patch) | |
tree | 2490e19fa11f0af5381c5e9ae3c0787fa4345163 /src | |
parent | d94b135fd1d3368b449a69a109d19f35b7ce8bed (diff) |
fix: display_icon.begin
Diffstat (limited to 'src')
-rw-r--r-- | src/widget/icon.vala | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/widget/icon.vala b/src/widget/icon.vala index 9a5212a..ef43baf 100644 --- a/src/widget/icon.vala +++ b/src/widget/icon.vala @@ -63,26 +63,26 @@ public class Icon : Gtk.Image { warning("cannot assign %s as icon, "+ "it is not a file nor a named icon", icon); } - display_icon(); + display_icon.begin(); }); notify["pixbuf"].connect(() => { type = IconType.PIXBUF; - display_icon(); + display_icon.begin(); }); size_allocate.connect(() => { size = get_style_context() .get_property("font-size", Gtk.StateFlags.NORMAL).get_double(); - display_icon(); + display_icon.begin(); }); get_style_context().changed.connect(() => { size = get_style_context() .get_property("font-size", Gtk.StateFlags.NORMAL).get_double(); - display_icon(); + display_icon.begin(); }); } } |