From 266812564d7905212943f699cc439fcf21d85d26 Mon Sep 17 00:00:00 2001 From: Kyle Gunger Date: Fri, 15 Nov 2024 03:03:48 -0500 Subject: Correct event handling for select button widget --- index.html | 2 +- scripts/gui-common/widgets.js | 6 +++++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index 52fb7ff..c075753 100644 --- a/index.html +++ b/index.html @@ -32,7 +32,7 @@ Home Automation - + diff --git a/scripts/gui-common/widgets.js b/scripts/gui-common/widgets.js index 78402c5..3d9d004 100644 --- a/scripts/gui-common/widgets.js +++ b/scripts/gui-common/widgets.js @@ -1108,13 +1108,17 @@ class WidgetSelectButton extends Widget if(this.#selected.length > 0) { let swap = this.#selected.shift(); - this.#swgs[swap].set(-swap - 1); + this.#swgs[swap].removeEventListener("change", this.#binder); + this.#swgs[swap].set(-swap - 1); + this.#swgs[swap].addEventListener("change", this.#binder); } this.#selected.push(idx); } else { + this.#swgs[idx].removeEventListener("change", this.#binder); this.#swgs[idx].set(-idx - 1); + this.#swgs[idx].addEventListener("change", this.#binder); } if (!this.#removeLastOver && this.#selected.length >= this.#maxSelections) -- cgit v1.2.3