diff --git a/TwitchDesktopNotifications/ManageIgnores.xaml b/TwitchDesktopNotifications/ManageIgnores.xaml
index 2ec22d2..5254b2a 100644
--- a/TwitchDesktopNotifications/ManageIgnores.xaml
+++ b/TwitchDesktopNotifications/ManageIgnores.xaml
@@ -29,7 +29,7 @@
Grid.Column="1"
Grid.RowSpan="1" Grid.Row="3"
CanUserResizeColumns="False"
- x:Name="dgrdIgnore" ItemsSource="{Binding StreamersToIgnore}" SelectionChanged="dgrdIgnore_SelectionChanged" AutoGenerateColumns="False" CanUserAddRows="False">
+ x:Name="dgrdIgnore" ItemsSource="{Binding StreamersToIgnore}" AutoGenerateColumns="False" CanUserAddRows="False">
@@ -42,6 +42,11 @@
+
+
+
+
diff --git a/TwitchDesktopNotifications/ManageIgnores.xaml.cs b/TwitchDesktopNotifications/ManageIgnores.xaml.cs
index 83cbdfe..7791b41 100644
--- a/TwitchDesktopNotifications/ManageIgnores.xaml.cs
+++ b/TwitchDesktopNotifications/ManageIgnores.xaml.cs
@@ -25,11 +25,6 @@ namespace TwitchDesktopNotifications
this.Close();
}
- private void dgrdIgnore_SelectionChanged(object sender, SelectionChangedEventArgs e)
- {
- Dispatcher.BeginInvoke(DispatcherPriority.Render, new Action(() => dgrdIgnore.UnselectAll()));
- }
-
private void HyperLink_Click(object sender, RoutedEventArgs e)
{
string link = ((Hyperlink)e.OriginalSource).NavigateUri.OriginalString;