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:
commit
2ae2e78407
1 changed files with 2 additions and 2 deletions
|
@ -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();
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue