bugfix
This commit is contained in:
parent
ad64ed7aa1
commit
36f345422b
|
@ -119,7 +119,7 @@ namespace Notepad
|
||||||
{
|
{
|
||||||
SaveFileDialog sfd = new SaveFileDialog();
|
SaveFileDialog sfd = new SaveFileDialog();
|
||||||
sfd.Title = "Save the file";
|
sfd.Title = "Save the file";
|
||||||
sfd.Filter = "*.txt|*.txt|*.*|*.*";
|
sfd.Filter = "Text file|*.txt|All files|*.*";
|
||||||
sfd.DefaultExt = "*.txt";
|
sfd.DefaultExt = "*.txt";
|
||||||
if (sfd.ShowDialog() == DialogResult.OK)
|
if (sfd.ShowDialog() == DialogResult.OK)
|
||||||
{
|
{
|
||||||
|
|
|
@ -29,7 +29,7 @@ namespace Notepad
|
||||||
|
|
||||||
body = HttpUtility.UrlEncode(body);
|
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);
|
Process.Start(uri);
|
||||||
}
|
}
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
|
Loading…
Reference in New Issue