mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-24 02:28:34 +01:00
Merge commit 'refs/pull/60051/head' of github.com:Microsoft/vscode into pr/60051
This commit is contained in:
@@ -439,6 +439,17 @@ class ExtHostSourceControl implements vscode.SourceControl {
|
||||
return this._selected;
|
||||
}
|
||||
|
||||
private _hideInputBox: boolean = false;
|
||||
|
||||
get hideInputBox(): boolean {
|
||||
return this._hideInputBox;
|
||||
}
|
||||
|
||||
set hideInputBox(hideInputBox: boolean | undefined) {
|
||||
this._hideInputBox = hideInputBox;
|
||||
this._proxy.$updateSourceControl(this.handle, { hideInputBox: !!hideInputBox });
|
||||
}
|
||||
|
||||
private _onDidChangeSelection = new Emitter<boolean>();
|
||||
readonly onDidChangeSelection = this._onDidChangeSelection.event;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user