onEditorsMoved => onEditorGroupMoved

This commit is contained in:
Benjamin Pasero
2017-10-24 15:38:12 +02:00
parent b9478c2d59
commit 02b9fb1fd9
6 changed files with 13 additions and 13 deletions

View File

@@ -60,7 +60,7 @@ export class MainThreadEditors implements MainThreadEditorsShape {
this._toDispose.push(documentsAndEditors.onTextEditorRemove(editors => editors.forEach(this._onTextEditorRemove, this)));
this._toDispose.push(editorGroupService.onEditorsChanged(() => this._updateActiveAndVisibleTextEditors()));
this._toDispose.push(editorGroupService.onEditorsMoved(() => this._updateActiveAndVisibleTextEditors()));
this._toDispose.push(editorGroupService.onEditorGroupMoved(() => this._updateActiveAndVisibleTextEditors()));
this._registeredDecorationTypes = Object.create(null);
}