diff --git a/.vs/DeskHubSharp/v15/.suo b/.vs/DeskHubSharp/v15/.suo index 56e92d6..6c1210b 100644 Binary files a/.vs/DeskHubSharp/v15/.suo and b/.vs/DeskHubSharp/v15/.suo differ diff --git a/DeskHubSharp/DetailWindow.xaml.cs b/DeskHubSharp/DetailWindow.xaml.cs index 1ffefed..7748798 100644 --- a/DeskHubSharp/DetailWindow.xaml.cs +++ b/DeskHubSharp/DetailWindow.xaml.cs @@ -51,8 +51,6 @@ namespace DeskHubSharp txtblk_stargazers.Text = $"This repo has {_repoDetail.stargazers_count} stargazers."; txtblk_watchers.Text = $"This repo has {_repoDetail.watchers_count} watchers."; txtblk_forks.Text = $"This repo has {_repoDetail.forks_count} forks."; - - } private void btn_close_Click(object sender, RoutedEventArgs e) @@ -66,6 +64,7 @@ namespace DeskHubSharp { ErrorWindow err = new ErrorWindow(); err.txtblk_error.Text = "Please select a branch to clone."; + err.ShowDialog(); } else { diff --git a/DeskHubSharp/MainWindow.xaml.cs b/DeskHubSharp/MainWindow.xaml.cs index 3899f89..101a04c 100644 --- a/DeskHubSharp/MainWindow.xaml.cs +++ b/DeskHubSharp/MainWindow.xaml.cs @@ -50,7 +50,7 @@ namespace DeskHubSharp } catch (ArgumentOutOfRangeException) { - ShowErrorMessage("MEME REVIEW!"); + ShowErrorMessage("Please search for a user with the Search button!"); } }