fix(core/ui): repaint the title of Progress layout when requested

M1nd3r/thp-dealloc
matejcik 11 months ago committed by M1nd3r
parent 98a6a2149c
commit fad653a38b

@ -127,6 +127,9 @@ impl Component for Progress {
self.description_pad.clear();
}
});
} else {
self.title.event(ctx, event);
self.description.event(ctx, event);
}
None
}

@ -87,6 +87,9 @@ impl Component for Progress {
}
});
}
} else {
self.title.event(ctx, event);
self.description.event(ctx, event);
}
None
}

Loading…
Cancel
Save