diff options
author | 2024-05-03 13:51:57 +0200 | |
---|---|---|
committer | 2024-05-03 13:51:57 +0200 | |
commit | a94984d681875146d7af9f568bf8713503c1ca96 (patch) | |
tree | c0a4eef3b5ab5fc3450b21b37df99542c178f6e0 /widget/src/image/viewer.rs | |
parent | 38cf87cb45484c7e52ddf775fb3abd7edbecc652 (diff) | |
parent | afb4cb99b92a196bf4dd15a09a8f9bd191293fdd (diff) | |
download | iced-a94984d681875146d7af9f568bf8713503c1ca96.tar.gz iced-a94984d681875146d7af9f568bf8713503c1ca96.tar.bz2 iced-a94984d681875146d7af9f568bf8713503c1ca96.zip |
Merge pull request #2424 from iced-rs/feature/image-opacity
Introduce dynamic `opacity` support for `Image` and `Svg`
Diffstat (limited to 'widget/src/image/viewer.rs')
-rw-r--r-- | widget/src/image/viewer.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/widget/src/image/viewer.rs b/widget/src/image/viewer.rs index 5eb76452..8fe6f021 100644 --- a/widget/src/image/viewer.rs +++ b/widget/src/image/viewer.rs @@ -342,6 +342,7 @@ where ..Rectangle::with_size(image_size) }, Radians(0.0), + 1.0, ); }); }); |