diff options
| author | 2019-07-30 15:23:05 +0100 | |
|---|---|---|
| committer | 2019-07-30 15:23:05 +0100 | |
| commit | 5ffe2941e8d63ef3ac5893fcb36a1ad0f825e319 (patch) | |
| tree | 595a84c54cd802f2db39ed266a04f0592a868fa5 /src/EventManager.py | |
| parent | we should be checking if the new hook has a higher priority (diff) | |
| signature | ||
Revert "we should be checking if the new hook has a higher priority"
This reverts commit b145e664e1c26322c916783b910050b7393fdb83.
Diffstat (limited to 'src/EventManager.py')
| -rw-r--r-- | src/EventManager.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/EventManager.py b/src/EventManager.py index db5475cf..b09847c4 100644 --- a/src/EventManager.py +++ b/src/EventManager.py @@ -150,7 +150,7 @@ class EventRoot(object): hook_position = 0 for i, other_hook in enumerate(hook_array): - if new_hook.priority > other_hook.priority: + if other_hook.priority > new_hook.priority: hook_position = i break |
