make Help Window non-collapsible

This commit is contained in:
Simon Gardling 2022-03-01 20:15:40 -05:00
parent 74b7952cb5
commit 360c35f2e7

View File

@ -189,6 +189,7 @@ impl epi::App for MathApp {
.default_pos([200.0, 200.0]) .default_pos([200.0, 200.0])
.open(&mut self.help_open) .open(&mut self.help_open)
.resizable(false) .resizable(false)
.collapsible(false)
.show(ctx, |ui| { .show(ctx, |ui| {
ui.collapsing("Supported Expressions", |ui| { ui.collapsing("Supported Expressions", |ui| {
ui.label(HELP_EXPR); ui.label(HELP_EXPR);