From c652671ec2c033745c1a882ca825f0572fdd23dd Mon Sep 17 00:00:00 2001 From: Jeremy Soller <jackpot51@gmail.com> Date: Sun, 17 Sep 2017 19:51:57 -0600 Subject: [PATCH] Adjust editor menu --- src/editor/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/editor/main.rs b/src/editor/main.rs index 1615e1f..ce0b0f6 100644 --- a/src/editor/main.rs +++ b/src/editor/main.rs @@ -34,7 +34,7 @@ impl Editor { window.add(&text_box); let menu = Menu::new("File"); - menu.position(0, 0).size(32, 16); + menu.position(4, 0).size(32, 16); let open_action = Action::new("Open"); menu.add(&open_action); -- GitLab