From 47a63d5cb7a6aa4c539c78eaad9bde5f219ce0f2 Mon Sep 17 00:00:00 2001 From: Conrad Irwin Date: Wed, 8 Nov 2023 18:36:12 -0700 Subject: [PATCH] de-dbg --- crates/gpui2/src/interactive.rs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/crates/gpui2/src/interactive.rs b/crates/gpui2/src/interactive.rs index 40d247f32b9dc69d59b5a1bb46f1d9bad1b8ed8e..a546c1b40b9cbb073f3539133c29b1714fffd951 100644 --- a/crates/gpui2/src/interactive.rs +++ b/crates/gpui2/src/interactive.rs @@ -414,14 +414,10 @@ pub trait ElementInteractivity: 'static { Box::new(move |_, key_down, context, phase, cx| { if phase == DispatchPhase::Bubble { let key_down = key_down.downcast_ref::().unwrap(); - dbg!(key_down); if let KeyMatch::Some(action) = cx.match_keystroke(&global_id, &key_down.keystroke, context) { - dbg!(&action); return Some(action); - } else { - dbg!("none"); } }