From 360c35f2e733ca81e52e8666250d990012dacc25 Mon Sep 17 00:00:00 2001 From: Simon Gardling Date: Tue, 1 Mar 2022 20:15:40 -0500 Subject: [PATCH] make Help Window non-collapsible --- src/egui_app.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/egui_app.rs b/src/egui_app.rs index f50faac..c1b29a3 100644 --- a/src/egui_app.rs +++ b/src/egui_app.rs @@ -189,6 +189,7 @@ impl epi::App for MathApp { .default_pos([200.0, 200.0]) .open(&mut self.help_open) .resizable(false) + .collapsible(false) .show(ctx, |ui| { ui.collapsing("Supported Expressions", |ui| { ui.label(HELP_EXPR);