From e00a2e9b2d97147be5912a97362d1bf1705b7c4e Mon Sep 17 00:00:00 2001 From: Héctor Ramón Jiménez Date: Mon, 18 Oct 2021 16:59:59 +0700 Subject: Remove `dbg!` leftover in `Renderer::fill_text` --- graphics/src/renderer.rs | 2 -- 1 file changed, 2 deletions(-) (limited to 'graphics') diff --git a/graphics/src/renderer.rs b/graphics/src/renderer.rs index 8d623868..0dca685f 100644 --- a/graphics/src/renderer.rs +++ b/graphics/src/renderer.rs @@ -92,8 +92,6 @@ where type Font = Font; fn fill_text(&mut self, text: renderer::text::Section<'_, Self::Font>) { - dbg!(text); - self.primitives.push(Primitive::Text { content: text.content.to_string(), bounds: text.bounds, -- cgit