From 1b51112c47aee202eba895dfb20799aea6c078a4 Mon Sep 17 00:00:00 2001 From: alex-ds13 <145657253+alex-ds13@users.noreply.github.com> Date: Mon, 5 May 2025 11:18:41 +0100 Subject: [PATCH] fix missing request_redraw on `Component` --- widget/src/lazy/component.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/widget/src/lazy/component.rs b/widget/src/lazy/component.rs index 8bd04d64..ce1b3056 100644 --- a/widget/src/lazy/component.rs +++ b/widget/src/lazy/component.rs @@ -374,6 +374,7 @@ where )); shell.invalidate_layout(); + shell.request_redraw(); } }