From d7d12b25108d8bae88440f7a010cb04fd581e166 Mon Sep 17 00:00:00 2001 From: Smit Barmase Date: Mon, 14 Jul 2025 21:22:14 +0530 Subject: [PATCH] more dbg --- crates/gpui/src/window.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/crates/gpui/src/window.rs b/crates/gpui/src/window.rs index 120b603a84da29eb9884d0c863e27588ccbf78f5..4e1db1ccd59250adf848a559f1147280f7def0dd 100644 --- a/crates/gpui/src/window.rs +++ b/crates/gpui/src/window.rs @@ -3133,6 +3133,7 @@ impl Window { /// This method should only be called as part of the prepaint phase of element drawing. pub fn set_focus_handle(&mut self, focus_handle: &FocusHandle, _: &App) { self.invalidator.debug_assert_prepaint(); + println!("set_focus_handle called"); if focus_handle.is_focused(self) { println!("setting focus for next frame"); self.next_frame.focus = Some(focus_handle.id);