summaryrefslogtreecommitdiffstats
path: root/graphics
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector@hecrj.dev>2024-05-03 07:04:57 +0200
committerLibravatar Héctor Ramón Jiménez <hector@hecrj.dev>2024-05-03 07:04:57 +0200
commiteac5bcb64f17dfbb52b64ea4f95693462986bb69 (patch)
treea4941797a889c47c05f563b7251f315f968357f5 /graphics
parent568ac66486937a294f2a79cefea277e4eb46b81e (diff)
downloadiced-eac5bcb64f17dfbb52b64ea4f95693462986bb69.tar.gz
iced-eac5bcb64f17dfbb52b64ea4f95693462986bb69.tar.bz2
iced-eac5bcb64f17dfbb52b64ea4f95693462986bb69.zip
Fix `Image::bounds` when rotation present in `iced_graphics`
Diffstat (limited to 'graphics')
-rw-r--r--graphics/src/image.rs7
1 files changed, 5 insertions, 2 deletions
diff --git a/graphics/src/image.rs b/graphics/src/image.rs
index 4fd6998d..9d09bf4c 100644
--- a/graphics/src/image.rs
+++ b/graphics/src/image.rs
@@ -41,9 +41,12 @@ impl Image {
/// Returns the bounds of the [`Image`].
pub fn bounds(&self) -> Rectangle {
match self {
- Image::Raster { bounds, .. } | Image::Vector { bounds, .. } => {
- *bounds
+ Image::Raster {
+ bounds, rotation, ..
}
+ | Image::Vector {
+ bounds, rotation, ..
+ } => bounds.rotate(*rotation),
}
}
}