bugfix
This commit is contained in:
@@ -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)
|
||||
{
|
||||
|
@@ -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>
|
||||
|
Reference in New Issue
Block a user