From 36f345422b87c966b8c8d7508b0e0e3c92651a57 Mon Sep 17 00:00:00 2001 From: Vichingo455 <59311016+Vichingo455@users.noreply.github.com> Date: Sun, 8 Jun 2025 17:41:12 +0200 Subject: [PATCH] bugfix --- Notepad/Form1.cs | 2 +- Notepad/Program.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Notepad/Form1.cs b/Notepad/Form1.cs index 2848cb1..897d22f 100644 --- a/Notepad/Form1.cs +++ b/Notepad/Form1.cs @@ -119,7 +119,7 @@ namespace Notepad { SaveFileDialog sfd = new SaveFileDialog(); sfd.Title = "Save the file"; - sfd.Filter = "*.txt|*.txt|*.*|*.*"; + sfd.Filter = "Text file|*.txt|All files|*.*"; sfd.DefaultExt = "*.txt"; if (sfd.ShowDialog() == DialogResult.OK) { diff --git a/Notepad/Program.cs b/Notepad/Program.cs index 88d73f6..619a78c 100644 --- a/Notepad/Program.cs +++ b/Notepad/Program.cs @@ -29,7 +29,7 @@ namespace Notepad body = HttpUtility.UrlEncode(body); - string uri = $"https://github.com/Vichingo455/Notepad/issues/new?labels=crash+report&title={header}&body={body}"; + string uri = $"https://git.vichingo455.freeddns.org/Vichingo455/Notepad/issues/new?title={header}&body={body}"; Process.Start(uri); } ///