From eb7d1f7c5d675461cf6eac04ba3b0ae55449d82d Mon Sep 17 00:00:00 2001 From: Ranlvor Date: Tue, 6 Sep 2022 00:16:39 +0200 Subject: [PATCH] Addjust blind icon threshold to maximum window-open-save extention --- config/uwap-home/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/uwap-home/index.js b/config/uwap-home/index.js index d7d6dc1..8733a07 100644 --- a/config/uwap-home/index.js +++ b/config/uwap-home/index.js @@ -669,8 +669,8 @@ const config: Config = { name: "Jalousien Büro", position: [170,658], icon: withState((s) => ( - (s["officeBlindLeftposition"] < 7 && - s["officeBlindRightposition"] < 7) ? + (s["officeBlindLeftposition"] <= 9 && + s["officeBlindRightposition"] <= 9) ? svg(icons.mdiBlindsOpen) : svg(icons.mdiBlinds) )),