We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f77b6f6 commit 8f9c6b3Copy full SHA for 8f9c6b3
1 file changed
src/vs/workbench/contrib/scm/browser/scmViewPane.ts
@@ -1220,6 +1220,7 @@ class SCMInputWidget extends Disposable {
1220
1221
set input(input: ISCMInput | undefined) {
1222
this.validationDisposable.dispose();
1223
+ removeClass(this.editorContainer, 'synthetic-focus');
1224
1225
this.repositoryDisposables.dispose();
1226
this.repositoryDisposables = new DisposableStore();
@@ -1412,6 +1413,7 @@ class SCMInputWidget extends Disposable {
1412
1413
1414
focus(): void {
1415
this.inputEditor.focus();
1416
+ addClass(this.editorContainer, 'synthetic-focus');
1417
}
1418
1419
private renderValidation(): void {
0 commit comments