From 23ba1fbcf67542c5f959c79493220bb8be6457d1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Chmel=C3=ADk?= Date: Sat, 12 Feb 2022 09:18:28 +0100 Subject: [PATCH] Added a7m to list of valid files --- src/RDAExplorerGUI/MainWindow.xaml.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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;