summaryrefslogtreecommitdiffstats
path: root/examples/clock
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2020-02-15 10:50:07 +0100
committerLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2020-02-15 10:50:07 +0100
commit570f769744aabce2d9d9618feadb47e4b92f50ca (patch)
tree767caf1961e577355aae323375bd29df583e0bcf /examples/clock
parentfe61d2fd676beea9b0b6b30471fe595f4f88496d (diff)
downloadiced-570f769744aabce2d9d9618feadb47e4b92f50ca.tar.gz
iced-570f769744aabce2d9d9618feadb47e4b92f50ca.tar.bz2
iced-570f769744aabce2d9d9618feadb47e4b92f50ca.zip
Rename `Settings::antialiasing` to `use_antialiasing`
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 f7fb6f2d..d0995e0c 100644
--- a/examples/clock/src/main.rs
+++ b/examples/clock/src/main.rs
@@ -5,7 +5,7 @@ use iced::{
pub fn main() {
Clock::run(Settings {
- antialiasing: true,
+ use_antialiasing: true,
..Settings::default()
})
}