diff options
author | 2024-03-17 13:46:52 +0100 | |
---|---|---|
committer | 2024-03-17 13:46:52 +0100 | |
commit | 846d76cd3f3f2faae5efbb3fda2a2bcb3b064481 (patch) | |
tree | 44c407d10ffc60856a83019a5794544723ade037 /examples/multitouch | |
parent | 9152904af1630a6d373b2fd7c284835bf0a3ca95 (diff) | |
download | iced-846d76cd3f3f2faae5efbb3fda2a2bcb3b064481.tar.gz iced-846d76cd3f3f2faae5efbb3fda2a2bcb3b064481.tar.bz2 iced-846d76cd3f3f2faae5efbb3fda2a2bcb3b064481.zip |
Remove `Sandbox` trait :tada:
Diffstat (limited to 'examples/multitouch')
-rw-r--r-- | examples/multitouch/src/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/multitouch/src/main.rs b/examples/multitouch/src/main.rs index 985c0ab9..69717310 100644 --- a/examples/multitouch/src/main.rs +++ b/examples/multitouch/src/main.rs @@ -14,7 +14,7 @@ pub fn main() -> iced::Result { tracing_subscriber::fmt::init(); iced::application("Multitouch - Iced", Multitouch::update, Multitouch::view) - .antialiased() + .antialiasing(true) .centered() .run() } |