mirror of
https://github.com/Zedfrigg/ironbar.git
synced 2025-07-01 10:41:03 +02:00
fix(script): not parsing pango markup
This commit is contained in:
parent
27d04795af
commit
f17ae7a415
1 changed files with 1 additions and 1 deletions
|
@ -63,7 +63,7 @@ impl Module<Label> for ScriptModule {
|
||||||
{
|
{
|
||||||
let label = label.clone();
|
let label = label.clone();
|
||||||
context.widget_rx.attach(None, move |s| {
|
context.widget_rx.attach(None, move |s| {
|
||||||
label.set_label(s.as_str());
|
label.set_markup(s.as_str());
|
||||||
Continue(true)
|
Continue(true)
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue