fix statusbar style override priorities

This commit is contained in:
Joao Moreno
2022-01-17 17:16:18 +01:00
parent 022ed6fa77
commit 23677de0f4
2 changed files with 2 additions and 2 deletions
@@ -44,7 +44,7 @@ export class StatusBarColorProvider implements IWorkbenchContribution {
if (enabled) {
this.disposable = this.statusbarService.overrideStyle({
priority: 100,
priority: 10,
foreground: STATUS_BAR_DEBUGGING_FOREGROUND,
background: STATUS_BAR_DEBUGGING_BACKGROUND,
border: STATUS_BAR_DEBUGGING_BORDER,
@@ -47,7 +47,7 @@ export class OfflineStatusBarController implements IWorkbenchContribution {
if (enabled) {
this.disposable = combinedDisposable(
this.statusbarService.overrideStyle({
priority: 10,
priority: 100,
foreground: STATUS_BAR_OFFLINE_FOREGROUND,
background: STATUS_BAR_OFFLINE_BACKGROUND,
border: STATUS_BAR_OFFLINE_BORDER,