diff --git a/src/RDAExplorerGUI/MainWindow.xaml.cs b/src/RDAExplorerGUI/MainWindow.xaml.cs index c7edd47..1fd5298 100644 --- a/src/RDAExplorerGUI/MainWindow.xaml.cs +++ b/src/RDAExplorerGUI/MainWindow.xaml.cs @@ -233,7 +233,7 @@ private void file_New_Click(object sender, RoutedEventArgs e) private void file_OpenReadOnly_Click(object sender, RoutedEventArgs e) { AnnoModificationManager4.Misc.OpenFileDialog openFileDialog = new AnnoModificationManager4.Misc.OpenFileDialog(); - openFileDialog.Filter = "Valid Files|*.rda;*.sww;*.rdu|All files|*.*"; + openFileDialog.Filter = "Valid Files|*.rda;*.sww;*.rdu;*.a7m|All files|*.*"; bool? nullable = openFileDialog.ShowDialog(); if ((!nullable.GetValueOrDefault() ? 0 : (nullable.HasValue ? 1 : 0)) == 0) return; @@ -243,7 +243,7 @@ private void file_OpenReadOnly_Click(object sender, RoutedEventArgs e) private void file_Open_Click(object sender, RoutedEventArgs e) { AnnoModificationManager4.Misc.OpenFileDialog openFileDialog = new AnnoModificationManager4.Misc.OpenFileDialog(); - openFileDialog.Filter = "Valid Files|*.rda;*.sww;*.rdu|All files|*.*"; + openFileDialog.Filter = "Valid Files|*.rda;*.sww;*.rdu;*.a7m|All files|*.*"; bool? nullable = openFileDialog.ShowDialog(); if ((!nullable.GetValueOrDefault() ? 0 : (nullable.HasValue ? 1 : 0)) == 0) return;