1
0
Fork 0
mirror of https://github.com/Zedfrigg/ironbar.git synced 2025-07-01 02:31:04 +02:00

fix(script): not parsing pango markup

This commit is contained in:
Jake Stanger 2022-10-16 12:56:39 +01:00
parent 27d04795af
commit f17ae7a415
No known key found for this signature in database
GPG key ID: C51FC8F9CB0BEA61

View file

@ -63,7 +63,7 @@ impl Module<Label> for ScriptModule {
{
let label = label.clone();
context.widget_rx.attach(None, move |s| {
label.set_label(s.as_str());
label.set_markup(s.as_str());
Continue(true)
});
}