summaryrefslogtreecommitdiffstats
path: root/examples
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
parentfe61d2fd676beea9b0b6b30471fe595f4f88496d (diff)
downloadiced-570f769744aabce2d9d9618feadb47e4b92f50ca.tar.gz
iced-570f769744aabce2d9d9618feadb47e4b92f50ca.tar.bz2
iced-570f769744aabce2d9d9618feadb47e4b92f50ca.zip
Rename `Settings::antialiasing` to `use_antialiasing`
Diffstat (limited to '')
-rw-r--r--examples/bezier_tool/src/main.rs2
-rw-r--r--examples/clock/src/main.rs2
-rw-r--r--examples/solar_system/src/main.rs2
3 files changed, 3 insertions, 3 deletions
diff --git a/examples/bezier_tool/src/main.rs b/examples/bezier_tool/src/main.rs
index 023eb0f7..01f8f847 100644
--- a/examples/bezier_tool/src/main.rs
+++ b/examples/bezier_tool/src/main.rs
@@ -287,7 +287,7 @@ use iced::{
pub fn main() {
Example::run(Settings {
- antialiasing: true,
+ use_antialiasing: true,
..Settings::default()
});
}
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()
})
}
diff --git a/examples/solar_system/src/main.rs b/examples/solar_system/src/main.rs
index 9e7dba2f..3cabedbb 100644
--- a/examples/solar_system/src/main.rs
+++ b/examples/solar_system/src/main.rs
@@ -15,7 +15,7 @@ use std::time::Instant;
pub fn main() {
SolarSystem::run(Settings {
- antialiasing: true,
+ use_antialiasing: true,
..Settings::default()
})
}