Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'modules')
-rw-r--r--modules/selection_utils.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/selection_utils.py b/modules/selection_utils.py
index aff9eea8..3bf89816 100644
--- a/modules/selection_utils.py
+++ b/modules/selection_utils.py
@@ -72,8 +72,9 @@ class SelectionOrder(bpy.types.Operator):
return {'PASS_THROUGH'}
def invoke(self, context, event):
- context.window_manager.modal_handler_add(self)
self.update(context)
+
+ context.window_manager.modal_handler_add(self)
return {'RUNNING_MODAL'}