summaryrefslogtreecommitdiffstats
path: root/examples/bezier_tool
diff options
context:
space:
mode:
Diffstat (limited to 'examples/bezier_tool')
-rw-r--r--examples/bezier_tool/src/main.rs5
1 files changed, 4 insertions, 1 deletions
diff --git a/examples/bezier_tool/src/main.rs b/examples/bezier_tool/src/main.rs
index efdb3924..023eb0f7 100644
--- a/examples/bezier_tool/src/main.rs
+++ b/examples/bezier_tool/src/main.rs
@@ -286,7 +286,10 @@ use iced::{
};
pub fn main() {
- Example::run(Settings::default())
+ Example::run(Settings {
+ antialiasing: true,
+ ..Settings::default()
+ });
}
#[derive(Default)]