Skip to content

Commit eac91da

Browse files
committed
* Fixed a display issue with the export dialog
1 parent 2431bfb commit eac91da

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

PK Finder/Windows/MainWindow.xaml.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ private void ExportItem_OnClick(object sender, RoutedEventArgs e)
145145
{
146146
if (_keyInfo == null) return;
147147

148-
SaveFileDialog sfd = new SaveFileDialog { Filter = "Text file (*.txt)|*.txt|HTML (*.html)|*.html|CSV (*.csv)|*.csv|Excel (.csv)|*.csv" };
148+
SaveFileDialog sfd = new SaveFileDialog { Filter = "Text file (*.txt)|*.txt|HTML (*.html)|*.html|CSV (*.csv)|*.csv|Excel (*.csv)|*.csv" };
149149
ExportManager exportManager = new ExportManager(_keyInfo);
150150

151151
if (sfd.ShowDialog() != true) return;

0 commit comments

Comments
 (0)