Skip to content

Commit

Permalink
[Blindscan] use keySelect from ConfigListScreen if available
Browse files Browse the repository at this point in the history
  • Loading branch information
Huevos authored Aug 15, 2024
1 parent 46e624c commit 5217190
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Blindscan/src/plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 5217190

Please sign in to comment.