diff options
| author | 2021-10-18 16:59:59 +0700 | |
|---|---|---|
| committer | 2021-10-18 16:59:59 +0700 | |
| commit | e00a2e9b2d97147be5912a97362d1bf1705b7c4e (patch) | |
| tree | 08139a62033ba533c29d1da3207c8fc5d3a23c7c /graphics | |
| parent | 4f5f444d7c507105d025471fbe930e50653c05bf (diff) | |
| download | iced-e00a2e9b2d97147be5912a97362d1bf1705b7c4e.tar.gz iced-e00a2e9b2d97147be5912a97362d1bf1705b7c4e.tar.bz2 iced-e00a2e9b2d97147be5912a97362d1bf1705b7c4e.zip | |
Remove `dbg!` leftover in `Renderer::fill_text`
Diffstat (limited to '')
| -rw-r--r-- | graphics/src/renderer.rs | 2 | 
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, | 
