Changeset View
Changeset View
Standalone View
Standalone View
release/scripts/modules/bpy_extras/keyconfig_utils.py
| Context not available. | |||||
| # ----------------------------------------------------------------------------- | # ----------------------------------------------------------------------------- | ||||
| # Utility Functions | # Utility Functions | ||||
| def keyconfig_test(kc): | def keyconfig_test(kc: KeyConfig): | ||||
| def testEntry(kc, entry, src=None, parent=None): | def testEntry(kc: KeyConfig, entry, src=None, parent=None): | ||||
| result = False | result = False | ||||
| idname, spaceid, regionid, children = entry | idname, spaceid, regionid, children = entry | ||||
| Context not available. | |||||