From a013207890766585ad2e3c155e6375fc1c2c46ca Mon Sep 17 00:00:00 2001 From: Simon Gardling Date: Wed, 18 May 2022 22:48:19 -0400 Subject: [PATCH] improve welcome window --- src/math_app.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/math_app.rs b/src/math_app.rs index d7f2d32..92f03de 100644 --- a/src/math_app.rs +++ b/src/math_app.rs @@ -488,11 +488,11 @@ impl App for MathApp { // Welcome window if self.opened.welcome { - let welcome_response = Window::new("Welcome!") - .open(&mut self.opened.welcome) + let welcome_response = Window::new("Welcome") .anchor(Align2::CENTER_CENTER, Vec2::ZERO) .resizable(false) .collapsible(false) + .title_bar(false) .show(ctx, |ui| { ui.label(self.text.welcome.clone()); });