Skip to content

Commit b83df9d

Browse files
committed
💄
1 parent b38b758 commit b83df9d

2 files changed

Lines changed: 2 additions & 4 deletions

File tree

src/vs/workbench/electron-sandbox/window.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@ import { isWindows, isMacintosh } from 'vs/base/common/platform';
3434
import { IProductService } from 'vs/platform/product/common/productService';
3535
import { INotificationService } from 'vs/platform/notification/common/notification';
3636
import { IKeybindingService } from 'vs/platform/keybinding/common/keybinding';
37-
import { IWorkbenchEnvironmentService } from 'vs/workbench/services/environment/common/environmentService';
3837
import { INativeWorkbenchEnvironmentService } from 'vs/workbench/services/environment/electron-sandbox/environmentService';
3938
import { IAccessibilityService, AccessibilitySupport } from 'vs/platform/accessibility/common/accessibility';
4039
import { WorkbenchState, IWorkspaceContextService } from 'vs/platform/workspace/common/workspace';
@@ -596,7 +595,7 @@ class NativeMenubarControl extends MenubarControl {
596595
@IStorageService storageService: IStorageService,
597596
@INotificationService notificationService: INotificationService,
598597
@IPreferencesService preferencesService: IPreferencesService,
599-
@IWorkbenchEnvironmentService protected readonly environmentService: IWorkbenchEnvironmentService,
598+
@INativeWorkbenchEnvironmentService protected readonly environmentService: INativeWorkbenchEnvironmentService,
600599
@IAccessibilityService accessibilityService: IAccessibilityService,
601600
@IMenubarService private readonly menubarService: IMenubarService,
602601
@IHostService hostService: IHostService,

src/vs/workbench/services/accessibility/electron-sandbox/accessibilityService.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55

66
import { IAccessibilityService, AccessibilitySupport } from 'vs/platform/accessibility/common/accessibility';
77
import { isWindows, isLinux } from 'vs/base/common/platform';
8-
import { IWorkbenchEnvironmentService } from 'vs/workbench/services/environment/common/environmentService';
98
import { INativeWorkbenchEnvironmentService } from 'vs/workbench/services/environment/electron-sandbox/environmentService';
109
import { IContextKeyService } from 'vs/platform/contextkey/common/contextkey';
1110
import { IConfigurationService } from 'vs/platform/configuration/common/configuration';
@@ -74,7 +73,7 @@ class LinuxAccessibilityContribution implements IWorkbenchContribution {
7473
constructor(
7574
@IJSONEditingService jsonEditingService: IJSONEditingService,
7675
@IAccessibilityService accessibilityService: IAccessibilityService,
77-
@IWorkbenchEnvironmentService environmentService: IWorkbenchEnvironmentService
76+
@INativeWorkbenchEnvironmentService environmentService: INativeWorkbenchEnvironmentService
7877
) {
7978
const forceRendererAccessibility = () => {
8079
if (accessibilityService.isScreenReaderOptimized()) {

0 commit comments

Comments
 (0)