From f96e1b283580316a5e3a2ee8050331a9f4df97c1 Mon Sep 17 00:00:00 2001 From: JannisX11 Date: Sun, 26 Jul 2020 23:17:31 +0200 Subject: [PATCH] Fix bar select not displaying text after start fixes #690 --- js/interface/actions.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/js/interface/actions.js b/js/interface/actions.js index 55fa4e66e..3cfb91674 100644 --- a/js/interface/actions.js +++ b/js/interface/actions.js @@ -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() {