summaryrefslogtreecommitdiffstats
path: root/examples/ggez/renderer/button.rs
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2019-08-31 04:31:13 +0200
committerLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2019-08-31 04:31:13 +0200
commiteecac7b5d163794645bcce8e450c74e3eb5e999f (patch)
treebf55576b1941bffae422050f72e7c9a6c1c0d282 /examples/ggez/renderer/button.rs
parent343cafa1ee0b6d29d6e739dfebb13ebe3656a9aa (diff)
downloadiced-eecac7b5d163794645bcce8e450c74e3eb5e999f.tar.gz
iced-eecac7b5d163794645bcce8e450c74e3eb5e999f.tar.bz2
iced-eecac7b5d163794645bcce8e450c74e3eb5e999f.zip
Remove `nalgebra` dependency
- Implement our own `Point` and `Vector` types - Make `Rectangle` not generic
Diffstat (limited to 'examples/ggez/renderer/button.rs')
-rw-r--r--examples/ggez/renderer/button.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/ggez/renderer/button.rs b/examples/ggez/renderer/button.rs
index 2423efe1..fc3ea7ca 100644
--- a/examples/ggez/renderer/button.rs
+++ b/examples/ggez/renderer/button.rs
@@ -29,7 +29,7 @@ impl button::Renderer for Renderer<'_> {
fn draw(
&mut self,
cursor_position: iced::Point,
- mut bounds: iced::Rectangle<f32>,
+ mut bounds: iced::Rectangle,
state: &button::State,
label: &str,
class: button::Class,