From 7bf7aea06d3b5402a0da3e5f2b6f162fc22cc973 Mon Sep 17 00:00:00 2001 From: Victoria Brekenfeld Date: Fri, 15 Jul 2022 14:22:25 +0200 Subject: [PATCH] chore: Remove left-over dbg-message --- src/shell/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/shell/mod.rs b/src/shell/mod.rs index d8931c85..44fa32c2 100644 --- a/src/shell/mod.rs +++ b/src/shell/mod.rs @@ -608,7 +608,7 @@ impl Shell { with_states(surface, |states| { let state = states.cached_state.current::(); matches!(state.layer, Layer::Top | Layer::Overlay) - && dbg!(state.keyboard_interactivity) != KeyboardInteractivity::None + && state.keyboard_interactivity != KeyboardInteractivity::None }) };