summaryrefslogtreecommitdiffstats
path: root/examples/clock
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector@hecrj.dev>2024-03-17 13:46:52 +0100
committerLibravatar Héctor Ramón Jiménez <hector@hecrj.dev>2024-03-17 13:46:52 +0100
commit846d76cd3f3f2faae5efbb3fda2a2bcb3b064481 (patch)
tree44c407d10ffc60856a83019a5794544723ade037 /examples/clock
parent9152904af1630a6d373b2fd7c284835bf0a3ca95 (diff)
downloadiced-846d76cd3f3f2faae5efbb3fda2a2bcb3b064481.tar.gz
iced-846d76cd3f3f2faae5efbb3fda2a2bcb3b064481.tar.bz2
iced-846d76cd3f3f2faae5efbb3fda2a2bcb3b064481.zip
Remove `Sandbox` trait :tada:
Diffstat (limited to 'examples/clock')
-rw-r--r--examples/clock/src/main.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/clock/src/main.rs b/examples/clock/src/main.rs
index 953ecf6f..ebb22cef 100644
--- a/examples/clock/src/main.rs
+++ b/examples/clock/src/main.rs
@@ -11,7 +11,7 @@ pub fn main() -> iced::Result {
iced::application("Clock - Iced", Clock::update, Clock::view)
.subscription(Clock::subscription)
.theme(Clock::theme)
- .antialiased()
+ .antialiasing(true)
.run()
}