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

fix: unable to use markup in icon labels

This commit is contained in:
Jake Stanger 2025-05-25 23:27:03 +01:00
parent e99a04923d
commit 9ed0d1270a
No known key found for this signature in database
GPG key ID: C51FC8F9CB0BEA61

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();
}