Skip to content

Commit

Permalink
* Fixed a display issue with the export dialog
Browse files Browse the repository at this point in the history
  • Loading branch information
CodeDead committed Sep 1, 2018
1 parent 2431bfb commit eac91da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion PK Finder/Windows/MainWindow.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit eac91da

Please sign in to comment.