From 573929d5ec99981ae3a4a0d675f1248932d56e61 Mon Sep 17 00:00:00 2001
From: Héctor Ramón Jiménez <hector0193@gmail.com>
Date: Fri, 1 May 2020 22:32:40 +0200
Subject: Use `Path::rectangle` directly in `color_palette`

---
 examples/color_palette/src/main.rs | 9 +++------
 1 file changed, 3 insertions(+), 6 deletions(-)

(limited to 'examples')

diff --git a/examples/color_palette/src/main.rs b/examples/color_palette/src/main.rs
index 243fae1d..ff399e76 100644
--- a/examples/color_palette/src/main.rs
+++ b/examples/color_palette/src/main.rs
@@ -170,9 +170,7 @@ impl canvas::Drawable for Theme {
                 x: (i as f32) * box_size.width,
                 y: 0.0,
             };
-            let rect = Path::new(|path| {
-                path.rectangle(anchor, box_size);
-            });
+            let rect = Path::rectangle(anchor, box_size);
             frame.fill(&rect, Fill::Color(color));
 
             if self.base == color {
@@ -242,9 +240,8 @@ impl canvas::Drawable for Theme {
                 x: (i as f32) * box_size.width,
                 y: box_size.height + 2.0 * pad,
             };
-            let rect = Path::new(|path| {
-                path.rectangle(anchor, box_size);
-            });
+
+            let rect = Path::rectangle(anchor, box_size);
             frame.fill(&rect, Fill::Color(color));
 
             frame.fill_text(canvas::Text {
-- 
cgit