File tree Expand file tree Collapse file tree 1 file changed +0
-6
lines changed
src/Files.App/Views/Layouts Expand file tree Collapse file tree 1 file changed +0
-6
lines changed Original file line number Diff line number Diff line change @@ -426,9 +426,6 @@ ParentShellPageInstance is null ||
426
426
}
427
427
else if ( e . Key == VirtualKey . Left ) // Left arrow: select parent folder (previous column)
428
428
{
429
- if ( ParentShellPageInstance is not null )
430
- return ;
431
-
432
429
var currentBladeIndex = ( ParentShellPageInstance is ColumnShellPage associatedColumnShellPage ) ? associatedColumnShellPage . ColumnParams . Column : 0 ;
433
430
this . FindAscendant < ColumnsLayoutPage > ( ) ? . MoveFocusToPreviousBlade ( currentBladeIndex ) ;
434
431
FileList . SelectedItem = null ;
@@ -437,9 +434,6 @@ ParentShellPageInstance is null ||
437
434
}
438
435
else if ( e . Key == VirtualKey . Right ) // Right arrow: switch focus to next column
439
436
{
440
- if ( ParentShellPageInstance is not null )
441
- return ;
442
-
443
437
var currentBladeIndex = ( ParentShellPageInstance is ColumnShellPage associatedColumnShellPage ) ? associatedColumnShellPage . ColumnParams . Column : 0 ;
444
438
this . FindAscendant < ColumnsLayoutPage > ( ) ? . MoveFocusToNextBlade ( currentBladeIndex + 1 ) ;
445
439
e . Handled = true ;
You can’t perform that action at this time.
0 commit comments