From 5217190e21285058b56351b769303e1686709d83 Mon Sep 17 00:00:00 2001 From: Huevos Date: Thu, 15 Aug 2024 16:41:40 +0200 Subject: [PATCH] [Blindscan] use keySelect from ConfigListScreen if available --- Blindscan/src/plugin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Blindscan/src/plugin.py b/Blindscan/src/plugin.py index f10ebea16..663d01167 100644 --- a/Blindscan/src/plugin.py +++ b/Blindscan/src/plugin.py @@ -292,7 +292,7 @@ def __init__(self, session): self["actions2"] = ActionMap(["ColorActions", "SetupActions"], { - "ok": self.keyGo, + "ok": self.keySelect if hasattr(self, "keySelect") else self.keyGo, "save": self.keyGo, "blue": self.resetDefaults, }, -2)