Skip to content

Commit

Permalink
Missing icons in activity bar (fixes #40531)
Browse files Browse the repository at this point in the history
  • Loading branch information
bpasero committed Dec 21, 2017
1 parent 1b7f924 commit d7f3531
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ export class CompositeBar implements ICompositeBar {
return; // We have not been rendered yet so there is nothing to update.
}

let compositesToShow = this.pinnedComposites;
let compositesToShow = this.pinnedComposites.slice(0); // never modify original array

// Always show the active composite even if it is marked to be hidden
if (this.activeCompositeId && !compositesToShow.some(id => id === this.activeCompositeId)) {
Expand Down

0 comments on commit d7f3531

Please sign in to comment.