File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed
src/vs/workbench/browser/parts/editor Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ import { localize } from 'vs/nls';
10
10
import { IAccessibilityService } from 'vs/platform/accessibility/common/accessibility' ;
11
11
import { CommandsRegistry } from 'vs/platform/commands/common/commands' ;
12
12
import { ConfigurationTarget , IConfigurationService } from 'vs/platform/configuration/common/configuration' ;
13
- import { INotificationHandle , INotificationService } from 'vs/platform/notification/common/notification' ;
13
+ import { INotificationHandle , INotificationService , NotificationPriority } from 'vs/platform/notification/common/notification' ;
14
14
import { IWorkbenchContribution } from 'vs/workbench/common/contributions' ;
15
15
import { IStatusbarEntryAccessor , IStatusbarService , StatusbarAlignment } from 'vs/workbench/services/statusbar/browser/statusbar' ;
16
16
import { themeColorFromId } from 'vs/platform/theme/common/themeService' ;
@@ -55,7 +55,10 @@ export class AccessibilityStatus extends Disposable implements IWorkbenchContrib
55
55
this . configurationService . updateValue ( 'editor.accessibilitySupport' , 'off' , ConfigurationTarget . USER ) ;
56
56
}
57
57
} ] ,
58
- { sticky : true }
58
+ {
59
+ sticky : true ,
60
+ priority : NotificationPriority . URGENT
61
+ }
59
62
) ;
60
63
61
64
Event . once ( this . screenReaderNotification . onDidClose ) ( ( ) => this . screenReaderNotification = null ) ;
You can’t perform that action at this time.
0 commit comments