Skip to content

Commit

Permalink
Fix bar select not displaying text after start
Browse files Browse the repository at this point in the history
fixes #690
  • Loading branch information
JannisX11 committed Jul 26, 2020
1 parent 65b1937 commit f96e1b2
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions js/interface/actions.js
Original file line number Diff line number Diff line change
Expand Up @@ -820,6 +820,9 @@ class BarSelect extends Widget {
this.nodes.forEach(node => {
$(node).find('bb-select').text(name)
})
if (!this.nodes.includes(this.node)) {
$(this.node).find('bb-select').text(name)
}
return this;
}
get() {
Expand Down

0 comments on commit f96e1b2

Please sign in to comment.