From d152a05e48e9e365c51ad11d75c7ee62ed62a4eb Mon Sep 17 00:00:00 2001 From: HeshamTB Date: Mon, 3 Sep 2018 23:29:40 +0300 Subject: [PATCH] attempt 1 (add Brakpoints) --- OWTrack/Form1.cs | 18 +++++++++++++----- 1 file changed, 13 insertions(+), 5 deletions(-) diff --git a/OWTrack/Form1.cs b/OWTrack/Form1.cs index acc1e58..18616bf 100644 --- a/OWTrack/Form1.cs +++ b/OWTrack/Form1.cs @@ -4,6 +4,7 @@ using System.Windows.Forms; using Newtonsoft.Json; using System.IO; + namespace OWTrack { public partial class Form1 : Form @@ -20,7 +21,8 @@ namespace OWTrack checkStatus(); update(); label4.Text = Program.Version.ToString(); - Text = "OWTrack " + Program.Version.ToString(); + Text = "OWTrack " + Program.Version.ToString(); + } private void checkStatus() @@ -72,9 +74,9 @@ namespace OWTrack else { if (!tr.LoacteOW()) - { - getGamePath(); + { st.Close(); + getGamePath(); } return true; } @@ -104,11 +106,17 @@ namespace OWTrack openFileDialog1.CheckFileExists = true; openFileDialog1.CheckPathExists = true; - if (openFileDialog1.ShowDialog() == DialogResult.OK) + DialogResult result = openFileDialog1.ShowDialog(); + + if (result == DialogResult.OK) { tr.gamePath = openFileDialog1.FileName; - update(); } + else if (result == DialogResult.Cancel) + { + Close(); + } + update(); } private Tracker savedTracker()