From 0a7f032028685741938dcdb1ff42c9c107c8bd56 Mon Sep 17 00:00:00 2001 From: filipriec Date: Sat, 30 Aug 2025 21:26:20 +0200 Subject: [PATCH] add_logic cursor when refocus is proper again --- client/src/ui/handlers/ui.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/client/src/ui/handlers/ui.rs b/client/src/ui/handlers/ui.rs index e37ec25..480ca1e 100644 --- a/client/src/ui/handlers/ui.rs +++ b/client/src/ui/handlers/ui.rs @@ -646,6 +646,9 @@ pub async fn run_ui() -> Result<()> { if let Page::Register(page) = &router.current { let _ = CursorManager::update_for_mode(page.editor.mode()); } + if let Page::AddLogic(page) = &router.current { + let _ = CursorManager::update_for_mode(page.editor.mode()); + } } } AppMode::Command => {