From 2bb9bbe27cca035bcea0a8f5b7cbb27413aa4e8a Mon Sep 17 00:00:00 2001 From: Simon Gardling Date: Thu, 24 Feb 2022 21:27:24 -0500 Subject: [PATCH] change default location of help window --- src/egui_app.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/egui_app.rs b/src/egui_app.rs index 1fec7bb..dda2c96 100644 --- a/src/egui_app.rs +++ b/src/egui_app.rs @@ -119,7 +119,7 @@ impl epi::App for MathApp { // Cute little window that lists supported functions! // TODO: add more detail - egui::Window::new("Supported Functions").show(ctx, |ui| { + egui::Window::new("Supported Functions").default_pos([200.0, 200.0]).show(ctx, |ui| { ui.label("- sqrt, abs"); ui.label("- exp, ln, log10 (log10 can also be called as log)"); ui.label("- sin, cos, tan, asin, acos, atan, atan2");