Skip to content

Commit

Permalink
Pressing enter while the ResolutionBox is focused does not result in …
Browse files Browse the repository at this point in the history
…entering the currently selected folder anymore.
  • Loading branch information
Luca Auer authored and Luca Auer committed May 25, 2018
1 parent 35d7f9b commit 61a0569
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Image sort.UI/MainWindow.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1286,7 +1286,7 @@ private void OpenInExplorer_Executed(object sender, ExecutedRoutedEventArgs e)
/// <param name="e"></param>
private void EnterFolder_Executed(object sender, ExecutedRoutedEventArgs e)
{
if (IsAnyFolderVisible)
if (IsAnyFolderVisible && !ResolutionBox.IsFocused)
EnterFolder();
}

Expand Down

0 comments on commit 61a0569

Please sign in to comment.