fix doubletap config location

This commit is contained in:
joBr99
2022-04-03 11:46:25 +02:00
parent 2da13f07bd
commit ca34314d01

View File

@@ -140,9 +140,9 @@ class LuiController(object):
self._previous_cards = []
self._current_card = dstCard
# check for duouble tap if configured and render current page
if self._config.get("doubleTapToUnlock") and int(value) >= 2:
if self._config.get("screensaver.doubleTapToUnlock") and int(value) >= 2:
self._pages_gen.render_card(self._current_card)
elif not self._config.get("doubleTapToUnlock"):
elif not self._config.get("screensaver.doubleTapToUnlock"):
self._pages_gen.render_card(self._current_card)
return