Skip to content

Commit ea1d863

Browse files
authored
fix input box focus issue for filter widget (microsoft#226667)
fix microsoft#226661
1 parent df6d9b3 commit ea1d863

File tree

1 file changed

+1
-1
lines changed
  • src/vs/workbench/contrib/debug/browser

1 file changed

+1
-1
lines changed

src/vs/workbench/contrib/debug/browser/repl.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -953,7 +953,7 @@ class FindReplAction extends ViewAction<Repl> {
953953
viewId: REPL_VIEW_ID,
954954
id: 'repl.action.find',
955955
title: localize('repl.action.find', "Debug Console: Focus Find"),
956-
precondition: ContextKeyExpr.or(CONTEXT_IN_DEBUG_REPL, ContextKeyExpr.equals('focusedView', 'workbench.panel.repl.view')),
956+
precondition: CONTEXT_IN_DEBUG_REPL,
957957
keybinding: [{
958958
when: ContextKeyExpr.or(CONTEXT_IN_DEBUG_REPL, ContextKeyExpr.equals('focusedView', 'workbench.panel.repl.view')),
959959
primary: KeyMod.CtrlCmd | KeyMod.Alt | KeyCode.KeyF,

0 commit comments

Comments
 (0)