From 57acfd2e15523a160fbfd0db4c91d2407ed8d4c5 Mon Sep 17 00:00:00 2001 From: Jonathan Johnson Date: Fri, 13 Sep 2024 10:10:20 -0700 Subject: [PATCH] Removing dbg --- src/window.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/window.rs b/src/window.rs index 78d928c..68036a2 100644 --- a/src/window.rs +++ b/src/window.rs @@ -489,7 +489,7 @@ where // avoid showing a blank window due to our multi-threaded event // handling by not showing the window until the graphics stack has // been initialized. - if let Some(activate) = dbg!(self.show_after_init) { + if let Some(activate) = self.show_after_init { self.next_redraw_target = None; behavior.redraw(&mut self); self.window.set_visible(true);