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:
authorStephen Leger <stephen@3dservices.ch>2018-12-04 15:56:08 +0300
committerStephen Leger <stephen@3dservices.ch>2018-12-04 15:57:16 +0300
commitdbb224a606f275b91ec504e01bfcd9dc79436002 (patch)
tree7514938584285da4e0bfca64d750d1911e762799 /archipack/archipack_wall2.py
parenta77bee47665d33ec64d6225f6fdce47572e9cb5f (diff)
archipack 2.8 fix issue #T58698 (event TIMER_REPORT)
Diffstat (limited to 'archipack/archipack_wall2.py')
-rw-r--r--archipack/archipack_wall2.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/archipack/archipack_wall2.py b/archipack/archipack_wall2.py
index 1916f32d..750cd313 100644
--- a/archipack/archipack_wall2.py
+++ b/archipack/archipack_wall2.py
@@ -2100,7 +2100,7 @@ class ARCHIPACK_OT_wall2_draw(ArchipackDrawTool, Operator):
def modal(self, context, event):
context.area.tag_redraw()
- if event.type in {'NONE', 'TIMER', 'EVT_TWEAK_L', 'WINDOW_DEACTIVATE'}:
+ if event.type in {'NONE', 'TIMER', 'TIMER_REPORT', 'EVT_TWEAK_L', 'WINDOW_DEACTIVATE'}:
return {'PASS_THROUGH'}
if self.keymap.check(event, self.keymap.delete):