Skip to content

Commit

Permalink
Merge pull request #3321 from VSCodeVim/fix_3316
Browse files Browse the repository at this point in the history
fix: closes #3316
  • Loading branch information
jpoon authored Jan 2, 2019
2 parents cb925ce + b14c6ba commit 78d5f06
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 78d5f06

Please sign in to comment.