From f2fe654a8e6be682608bb63546e076ffef0d4640 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Simon=20Sch=C3=B6n?= Date: Wed, 8 Jun 2022 20:44:06 +0200 Subject: [PATCH] clear password textbox on logout --- src/MainForm.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/MainForm.cs b/src/MainForm.cs index f2cc50d..0e9d854 100644 --- a/src/MainForm.cs +++ b/src/MainForm.cs @@ -400,6 +400,9 @@ namespace MeshCentralRouter } else { + if (currentPanel == 4) + passwordTextBox.Text = ""; + this.Height = initialHeight; this.FormBorderStyle = FormBorderStyle.FixedSingle; }