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

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