@@ -31,7 +31,7 @@ import { activeContrastBorder, contrastBorder, editorBackground } from 'vs/platf
3131import { ResourcesDropHandler , DraggedEditorIdentifier , DraggedEditorGroupIdentifier , extractTreeDropData , isWindowDraggedOver } from 'vs/workbench/browser/dnd' ;
3232import { Color } from 'vs/base/common/color' ;
3333import { INotificationService } from 'vs/platform/notification/common/notification' ;
34- import { MergeGroupMode , IMergeGroupOptions , IEditorGroupsService } from 'vs/workbench/services/editor/common/editorGroupsService' ;
34+ import { MergeGroupMode , IMergeGroupOptions } from 'vs/workbench/services/editor/common/editorGroupsService' ;
3535import { addDisposableListener , EventType , EventHelper , Dimension , scheduleAtNextAnimationFrame , findParentWithClass , clearNode , DragAndDropObserver , isMouseEvent , getWindow , runWhenWindowIdle } from 'vs/base/browser/dom' ;
3636import { localize } from 'vs/nls' ;
3737import { IEditorGroupsView , EditorServiceImpl , IEditorGroupView , IInternalEditorOpenOptions , IEditorPartsView } from 'vs/workbench/browser/parts/editor/editor' ;
@@ -148,13 +148,12 @@ export class MultiEditorTabsControl extends EditorTabsControl {
148148 @IThemeService themeService : IThemeService ,
149149 @IEditorService private readonly editorService : EditorServiceImpl ,
150150 @IPathService private readonly pathService : IPathService ,
151- @IEditorGroupsService editorGroupService : IEditorGroupsService ,
152151 @ITreeViewsDnDService private readonly treeViewsDragAndDropService : ITreeViewsDnDService ,
153152 @IEditorResolverService editorResolverService : IEditorResolverService ,
154153 @ILifecycleService private readonly lifecycleService : ILifecycleService ,
155154 @IHostService hostService : IHostService
156155 ) {
157- super ( parent , editorPartsView , groupsView , groupView , tabsModel , contextMenuService , instantiationService , contextKeyService , keybindingService , notificationService , quickInputService , themeService , editorResolverService , editorGroupService , hostService ) ;
156+ super ( parent , editorPartsView , groupsView , groupView , tabsModel , contextMenuService , instantiationService , contextKeyService , keybindingService , notificationService , quickInputService , themeService , editorResolverService , hostService ) ;
158157
159158 // Resolve the correct path library for the OS we are on
160159 // If we are connected to remote, this accounts for the
@@ -1211,7 +1210,7 @@ export class MultiEditorTabsControl extends EditorTabsControl {
12111210 description : editor . getDescription ( verbosity ) ,
12121211 forceDescription : editor . hasCapability ( EditorInputCapabilities . ForceDescription ) ,
12131212 title : editor . getTitle ( Verbosity . LONG ) ,
1214- ariaLabel : computeEditorAriaLabel ( editor , tabIndex , this . groupView , this . editorGroupService . count )
1213+ ariaLabel : computeEditorAriaLabel ( editor , tabIndex , this . groupView , this . editorPartsView . count )
12151214 } ) ;
12161215
12171216 if ( editor === this . tabsModel . activeEditor ) {
0 commit comments