1
0
Fork 0
mirror of https://github.com/Zedfrigg/ironbar.git synced 2025-08-16 14:21:03 +02:00

Merge pull request #1005 from JakeStanger/fix/icon-label-markup

fix: unable to use markup in icon labels
This commit is contained in:
Jake Stanger 2025-05-25 23:31:12 +01:00 committed by GitHub
commit 2ae2e78407
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -126,12 +126,12 @@ impl IconLabel {
if matches!(res, Ok(true)) {
image.show();
} else {
label.set_text(&input);
label.set_label_escaped(&input);
label.show();
}
});
} else {
label.set_text(input);
label.set_label_escaped(input);
label.show();
}