File tree Expand file tree Collapse file tree 1 file changed +2
-8
lines changed
src/vs/workbench/contrib/preferences/browser Expand file tree Collapse file tree 1 file changed +2
-8
lines changed Original file line number Diff line number Diff line change @@ -64,12 +64,10 @@ export class KeybindingsSearchWidget extends SearchWidget {
64
64
65
65
this . _chords = null ;
66
66
this . _inputValue = '' ;
67
-
68
- this . _reset ( ) ;
69
67
}
70
68
71
69
override clear ( ) : void {
72
- this . _reset ( ) ;
70
+ this . _chords = null ;
73
71
super . clear ( ) ;
74
72
}
75
73
@@ -83,7 +81,7 @@ export class KeybindingsSearchWidget extends SearchWidget {
83
81
}
84
82
85
83
stopRecordingKeys ( ) : void {
86
- this . _reset ( ) ;
84
+ this . _chords = null ;
87
85
this . recordDisposables . clear ( ) ;
88
86
}
89
87
@@ -92,10 +90,6 @@ export class KeybindingsSearchWidget extends SearchWidget {
92
90
this . inputBox . value = this . _inputValue ;
93
91
}
94
92
95
- private _reset ( ) {
96
- this . _chords = null ;
97
- }
98
-
99
93
private _onKeyDown ( keyboardEvent : IKeyboardEvent ) : void {
100
94
keyboardEvent . preventDefault ( ) ;
101
95
keyboardEvent . stopPropagation ( ) ;
You can’t perform that action at this time.
0 commit comments