From db6c2797cca89fd5486b6ab4b630286e7188d785 Mon Sep 17 00:00:00 2001 From: Ray Date: Tue, 12 Oct 2021 20:03:19 +0100 Subject: [PATCH 1/2] Fixed: save-as not keeping save file location --- MainForm.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/MainForm.cs b/MainForm.cs index 93c1771..1c757db 100644 --- a/MainForm.cs +++ b/MainForm.cs @@ -1184,6 +1184,10 @@ namespace FizzyLauncher Result result = fileHandler.Save(treeView1, filename, password); if (result.IsSuccess) { + this.ApplicationMode = AppMode.Open; + sessionFilename = filename; + sessionPassword = password; + treeView1.SetNoChanges(); } From e1409f9945e881ab3bad31e7a41bf0e0c4dcc273 Mon Sep 17 00:00:00 2001 From: Ray Date: Tue, 12 Oct 2021 20:05:40 +0100 Subject: [PATCH 2/2] Changed: focus on address field on bookmark item form --- BookmarkForm.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/BookmarkForm.cs b/BookmarkForm.cs index 94e7683..96dea2d 100644 --- a/BookmarkForm.cs +++ b/BookmarkForm.cs @@ -293,6 +293,8 @@ namespace FizzyLauncher base.OnShown(e); this.DialogResult = DialogResult.None; + + textBox2.Focus(); } protected override void OnClosing(CancelEventArgs e)