summaryrefslogtreecommitdiffstats
path: root/core/src/rectangle.rs
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2022-12-20 11:31:25 +0100
committerLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2022-12-20 11:31:25 +0100
commit6bb01b727611b83592f96b2b89371a12e7ce54d8 (patch)
treec75ba7d21b0bec1f5000b6e4ababff923d09387c /core/src/rectangle.rs
parente0c728c62c6fd9496de1d442e7476e24fc5e9023 (diff)
downloadiced-6bb01b727611b83592f96b2b89371a12e7ce54d8.tar.gz
iced-6bb01b727611b83592f96b2b89371a12e7ce54d8.tar.bz2
iced-6bb01b727611b83592f96b2b89371a12e7ce54d8.zip
Fix `clippy` lints for Rust 1.66
Diffstat (limited to 'core/src/rectangle.rs')
-rw-r--r--core/src/rectangle.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/src/rectangle.rs b/core/src/rectangle.rs
index 4e082051..4fe91519 100644
--- a/core/src/rectangle.rs
+++ b/core/src/rectangle.rs
@@ -116,8 +116,8 @@ impl std::ops::Mul<f32> for Rectangle<f32> {
fn mul(self, scale: f32) -> Self {
Self {
- x: self.x as f32 * scale,
- y: self.y as f32 * scale,
+ x: self.x * scale,
+ y: self.y * scale,
width: self.width * scale,
height: self.height * scale,
}