-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Zone: Step towards zones not bound to a single node (#43)
Remaining stumble points: - AutoAction: Based on controlID - Context: Based on nodes
- Loading branch information
1 parent
5feed64
commit e633c86
Showing
3 changed files
with
130 additions
and
99 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,7 +21,7 @@ | |
|
||
|
||
|
||
__version__ = "2024.07.19" | ||
__version__ = "2024.07.25" | ||
__authors__ = ( | ||
"Shirley Noël <[email protected]>", | ||
"Julien Cochuyt <[email protected]>", | ||
|
@@ -616,7 +616,7 @@ def initData(self, context): | |
rule = result.rule | ||
if ( | ||
rule.type in (ruleTypes.PARENT, ruleTypes.ZONE) | ||
and node in result.node | ||
and result.containsNode(node) | ||
): | ||
parents.insert(0, rule.name) | ||
self.contextParentCombo.Set(parents) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.