mirror of
https://github.com/microsoft/vscode.git
synced 2026-05-26 18:27:38 +01:00
Fix #121193
This commit is contained in:
@@ -148,7 +148,7 @@ export class SearchWidget extends Widget {
|
||||
readonly onDidToggleContext: Event<void> = this._onDidToggleContext.event;
|
||||
|
||||
private showContextCheckbox!: Checkbox;
|
||||
private contextLinesInput!: InputBox;
|
||||
public contextLinesInput!: InputBox;
|
||||
|
||||
constructor(
|
||||
container: HTMLElement,
|
||||
|
||||
@@ -184,7 +184,7 @@ export class SearchEditor extends BaseTextEditor {
|
||||
this.inputPatternExcludes.onSubmit(triggeredOnType => this.triggerSearch({ resetCursor: false, delay: triggeredOnType ? this.searchConfig.searchOnTypeDebouncePeriod : 0 }));
|
||||
this._register(this.inputPatternExcludes.onChangeIgnoreBox(() => this.triggerSearch()));
|
||||
|
||||
[this.queryEditorWidget.searchInput, this.inputPatternIncludes, this.inputPatternExcludes].map(input =>
|
||||
[this.queryEditorWidget.searchInput, this.inputPatternIncludes, this.inputPatternExcludes, this.queryEditorWidget.contextLinesInput].map(input =>
|
||||
this._register(attachInputBoxStyler(input, this.themeService, { inputBorder: searchEditorTextInputBorder })));
|
||||
|
||||
// Messages
|
||||
|
||||
Reference in New Issue
Block a user