From 88dd8f034f55a0627df9eb028e44c61042f16bab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sof=C3=ADa=20Aritz?= Date: Mon, 27 Feb 2023 15:36:35 +0100 Subject: [PATCH] Add more spacing in the password prompt phase --- src/main.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main.rs b/src/main.rs index ad566ba..30f641b 100644 --- a/src/main.rs +++ b/src/main.rs @@ -173,6 +173,7 @@ impl eframe::App for App { ui.add_space(10.0); TextEdit::singleline(&mut self.password_buffer).password(true).ui(ui); + ui.add_space(7.5); if ui.button("start app").clicked() { self.password = Some(self.password_buffer.clone());