Skip to content

Commit 49295a0

Browse files
authored
Make statusBarColorControl work for prominent status bar items (#9447)
1 parent 18b6457 commit 49295a0

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/statusBar.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -149,11 +149,13 @@ class StatusBarImpl implements vscode.Disposable {
149149
colorCustomizations['statusBar.background'] = background;
150150
colorCustomizations['statusBar.noFolderBackground'] = background;
151151
colorCustomizations['statusBar.debuggingBackground'] = background;
152+
colorCustomizations['statusBarItem.prominentBackground'] = background;
152153
}
153154

154155
if (foreground !== undefined) {
155156
colorCustomizations['statusBar.foreground'] = foreground;
156157
colorCustomizations['statusBar.debuggingForeground'] = foreground;
158+
colorCustomizations['statusBarItem.prominentForeground'] = foreground;
157159
}
158160

159161
if (currentColorCustomizations !== colorCustomizations) {

0 commit comments

Comments
 (0)