summaryrefslogtreecommitdiffstats
path: root/graphics
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2021-10-18 16:59:59 +0700
committerLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2021-10-18 16:59:59 +0700
commite00a2e9b2d97147be5912a97362d1bf1705b7c4e (patch)
tree08139a62033ba533c29d1da3207c8fc5d3a23c7c /graphics
parent4f5f444d7c507105d025471fbe930e50653c05bf (diff)
downloadiced-e00a2e9b2d97147be5912a97362d1bf1705b7c4e.tar.gz
iced-e00a2e9b2d97147be5912a97362d1bf1705b7c4e.tar.bz2
iced-e00a2e9b2d97147be5912a97362d1bf1705b7c4e.zip
Remove `dbg!` leftover in `Renderer::fill_text`
Diffstat (limited to 'graphics')
-rw-r--r--graphics/src/renderer.rs2
1 files changed, 0 insertions, 2 deletions
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,