diff options
author | 2023-02-17 11:50:52 -0800 | |
---|---|---|
committer | 2023-02-17 13:01:40 -0800 | |
commit | 2d427455ce8f9627da7c09eb80f38a615f0ddcb7 (patch) | |
tree | 37b3446cd382bdd6f6949032c4318a8fba071cb6 /src | |
parent | 744cef5608a91fe55cbbe1adb73a9a0b5e266668 (diff) | |
download | iced-2d427455ce8f9627da7c09eb80f38a615f0ddcb7.tar.gz iced-2d427455ce8f9627da7c09eb80f38a615f0ddcb7.tar.bz2 iced-2d427455ce8f9627da7c09eb80f38a615f0ddcb7.zip |
Iced master merge (again)
Diffstat (limited to 'src')
-rw-r--r-- | src/multi_window/application.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/multi_window/application.rs b/src/multi_window/application.rs index 3af1d8d5..d0b515ab 100644 --- a/src/multi_window/application.rs +++ b/src/multi_window/application.rs @@ -148,6 +148,7 @@ pub trait Application: Sized { /// while a scale factor of `0.5` will shrink them to half their size. /// /// By default, it returns `1.0`. + #[allow(unused_variables)] fn scale_factor(&self, window: window::Id) -> f64 { 1.0 } |