This commit is contained in:
Vichingo455 2025-06-08 17:41:12 +02:00
parent ad64ed7aa1
commit 36f345422b
2 changed files with 2 additions and 2 deletions

View File

@ -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)
{

View File

@ -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);
}
/// <summary>