git.lucas.co / cce-data-editor
structured data editor
git clone https://git.lucas.co/cce-data-editor.git

commitce084ba4e652adfb3b40bebc86056c8693575ad0
parent8c6fad666d
authorLucas Galante <[email protected]>
date2026-06-29 21:01
Remove debug prints from main.rs after successfully resolving popover rendering

 src/main.rs | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/src/main.rs b/src/main.rs
index c9ffaf7..c794043 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -1426,10 +1426,7 @@ impl Application for DataEditorApp {
             changed = true;
             editor_handled = true;
         }
-        println!("[DEBUG DROPDOWN MAIN] calling mouse_input: button={:?}, state={:?}, pos=({:.1}, {:.1})", button, state, px, py);
-        let ret = self.selected_choice_editor.mouse_input(button, state, px, py, &mut self.ui_context);
-        println!("[DEBUG DROPDOWN MAIN] mouse_input returned: {}, editor_handled before={}", ret, editor_handled);
-        if ret {
+        if self.selected_choice_editor.mouse_input(button, state, px, py, &mut self.ui_context) {
             changed = true;
             editor_handled = true;
         }