From eac91dab9d5884b92510bb45b05920942b75984a Mon Sep 17 00:00:00 2001 From: CodeDead Date: Sun, 2 Sep 2018 00:30:48 +0200 Subject: [PATCH] * Fixed a display issue with the export dialog --- PK Finder/Windows/MainWindow.xaml.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PK Finder/Windows/MainWindow.xaml.cs b/PK Finder/Windows/MainWindow.xaml.cs index 6c33f04..dccd22c 100644 --- a/PK Finder/Windows/MainWindow.xaml.cs +++ b/PK Finder/Windows/MainWindow.xaml.cs @@ -145,7 +145,7 @@ private void ExportItem_OnClick(object sender, RoutedEventArgs e) { if (_keyInfo == null) return; - SaveFileDialog sfd = new SaveFileDialog { Filter = "Text file (*.txt)|*.txt|HTML (*.html)|*.html|CSV (*.csv)|*.csv|Excel (.csv)|*.csv" }; + SaveFileDialog sfd = new SaveFileDialog { Filter = "Text file (*.txt)|*.txt|HTML (*.html)|*.html|CSV (*.csv)|*.csv|Excel (*.csv)|*.csv" }; ExportManager exportManager = new ExportManager(_keyInfo); if (sfd.ShowDialog() != true) return;