Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/microsoft/vscode.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Dossett <ddossett@microsoft.com>2022-07-21 18:48:48 +0300
committerDavid Dossett <ddossett@microsoft.com>2022-07-21 18:48:48 +0300
commit1dc7fccc8026ce002b7d61ae44366052b90516c0 (patch)
tree57471bfe7a06d7e2c99856be97e23bdf90486991
parent81fff43fd6f9f5dd9c01508da30b16f35ed61933 (diff)
Use "Notifications" label for status bar entry when do not disturb is enabledddossett/solar-starfish
-rw-r--r--src/vs/workbench/browser/parts/notifications/notificationsStatus.ts1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/vs/workbench/browser/parts/notifications/notificationsStatus.ts b/src/vs/workbench/browser/parts/notifications/notificationsStatus.ts
index d3da50394ad..670e5f35cae 100644
--- a/src/vs/workbench/browser/parts/notifications/notificationsStatus.ts
+++ b/src/vs/workbench/browser/parts/notifications/notificationsStatus.ts
@@ -86,7 +86,6 @@ export class NotificationsStatus extends Disposable {
if (this.notificationService.doNotDisturbMode) {
statusProperties = {
...statusProperties,
- name: localize('status.doNotDisturb', "Do Not Disturb"),
text: `${notificationsInProgress > 0 || this.newNotificationsCount > 0 ? '$(bell-slash-dot)' : '$(bell-slash)'}`,
ariaLabel: localize('status.doNotDisturb', "Do Not Disturb"),
tooltip: localize('status.doNotDisturbTooltip', "Do Not Disturb Mode is Enabled")