diff options
author | 2020-02-18 09:54:24 +0100 | |
---|---|---|
committer | 2020-02-18 09:54:24 +0100 | |
commit | 6f7247ca13181bcdfe1a3065215c1b3204723b84 (patch) | |
tree | b183e5403ef2003210e2445fad997f781c847e4c /examples/bezier_tool | |
parent | 9c067562fa765cfc49d09cd9b12fbba96d5619fa (diff) | |
download | iced-6f7247ca13181bcdfe1a3065215c1b3204723b84.tar.gz iced-6f7247ca13181bcdfe1a3065215c1b3204723b84.tar.bz2 iced-6f7247ca13181bcdfe1a3065215c1b3204723b84.zip |
Rename `Settings::use_antialiasing` to `antialiasing`
Diffstat (limited to 'examples/bezier_tool')
-rw-r--r-- | examples/bezier_tool/src/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/bezier_tool/src/main.rs b/examples/bezier_tool/src/main.rs index 01f8f847..023eb0f7 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 { - use_antialiasing: true, + antialiasing: true, ..Settings::default() }); } |