File tree Expand file tree Collapse file tree
src/vs/workbench/browser/actions Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ function ensureDOMFocus(widget: ListWidget | undefined): void {
2828 }
2929}
3030
31- function focusDown ( accessor : ServicesAccessor , arg2 ?: number , loop : boolean = true ) : void {
31+ function focusDown ( accessor : ServicesAccessor , arg2 ?: number , loop : boolean = false ) : void {
3232 const focused = accessor . get ( IListService ) . lastFocusedList ;
3333 const count = typeof arg2 === 'number' ? arg2 : 1 ;
3434
@@ -165,7 +165,7 @@ KeybindingsRegistry.registerCommandAndKeybindingRule({
165165 }
166166} ) ;
167167
168- function focusUp ( accessor : ServicesAccessor , arg2 ?: number , loop : boolean = true ) : void {
168+ function focusUp ( accessor : ServicesAccessor , arg2 ?: number , loop : boolean = false ) : void {
169169 const focused = accessor . get ( IListService ) . lastFocusedList ;
170170 const count = typeof arg2 === 'number' ? arg2 : 1 ;
171171
You can’t perform that action at this time.
0 commit comments