Skip to content

Commit 63f0ffd

Browse files
committed
fixed no longer working settings dialog by closing using cancel
1 parent 1c80b48 commit 63f0ffd

2 files changed

Lines changed: 6 additions & 4 deletions

File tree

EveChatNotifier/FormMain.cs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -308,7 +308,8 @@ private void notifyIcon_DoubleClick(object sender, EventArgs e)
308308
if(_Settings == null)
309309
{
310310
_Settings = new Settings();
311-
_Settings.Show();
311+
_Settings.ShowDialog();
312+
_Settings = null;
312313
}
313314
else
314315
{
@@ -332,7 +333,8 @@ private void notifyIcon_MouseDoubleClick(object sender, MouseEventArgs e)
332333
if (_Settings == null)
333334
{
334335
_Settings = new Settings();
335-
_Settings.Show();
336+
_Settings.ShowDialog();
337+
_Settings = null;
336338
}
337339
else
338340
{

EveChatNotifier/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,5 @@
3232
// Sie können alle Werte angeben oder Standardwerte für die Build- und Revisionsnummern verwenden,
3333
// übernehmen, indem Sie "*" eingeben:
3434
// [assembly: AssemblyVersion("1.0.*")]
35-
[assembly: AssemblyVersion("2.2.0.0")]
36-
[assembly: AssemblyFileVersion("2.2.0.0")]
35+
[assembly: AssemblyVersion("2.2.1.0")]
36+
[assembly: AssemblyFileVersion("2.2.1.0")]

0 commit comments

Comments
 (0)