Skip to content

Commit fc14709

Browse files
committed
Fix broken criteria-level overriding of gesture bindings
Fix-up of ab3500c
1 parent ef83206 commit fc14709

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

addon/globalPlugins/webAccess/ruleHandler/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1647,8 +1647,8 @@ def setIfNotNoneOrEmptyString(key, value):
16471647
"end": self.endSelector.dump(),
16481648
}
16491649
gestures = {
1650-
grestureId: (scope.value, actionId)
1651-
for gestureId, (scope, actionId) in self.gestures
1650+
gestureId: (scope.value, actionId)
1651+
for gestureId, (scope, actionId) in self.gestures.items()
16521652
}
16531653
setIfNotDefault("gestures", gestures, {})
16541654
setIfNotDefault("properties", self.properties.dump(), {})

0 commit comments

Comments
 (0)