Skip to content

Commit

Permalink
fix: closes #3316
Browse files Browse the repository at this point in the history
  • Loading branch information
jpoon committed Jan 2, 2019
1 parent cb925ce commit b14c6ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/statusBar.ts
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ class StatusBarImpl implements vscode.Disposable {
const workbenchConfiguration = vscode.workspace.getConfiguration('workbench');
const currentColorCustomizations = workbenchConfiguration.get('colorCustomizations');

const colorCustomizations = Object.assign(currentColorCustomizations || {}, {
const colorCustomizations = Object.assign({}, currentColorCustomizations || {}, {
'statusBar.background': `${background}`,
'statusBar.noFolderBackground': `${background}`,
'statusBar.debuggingBackground': `${background}`,
Expand Down

0 comments on commit b14c6ba

Please sign in to comment.