git.lucas.co / cce-ui
GPU-accelerated UI toolkit (Vulkan)
git clone https://git.lucas.co/cce-ui.git

commit510dd123e417e88f1a155bae043fd02ea4057549
parentb86f5e3422
authorLucas Galante <[email protected]>
date2026-06-28 20:24
Do not clear tick_receivers in clear_hierarchy to preserve dynamic widget behaviors on layout rebuild

 src/context.rs | 1 -
 1 file changed, 1 deletion(-)

diff --git a/src/context.rs b/src/context.rs
index 60638b6..50c2011 100644
--- a/src/context.rs
+++ b/src/context.rs
@@ -586,7 +586,6 @@ impl UiContext {
         self.layout_tree.parents.clear();
         self.layout_tree.children.clear();
         self.widget_registry.clear();
-        self.tick_receivers.clear();
     }
 
     // --- Popovers ---