Skip to content

Commit

Permalink
Slightly improve merge all modal running time
Browse files Browse the repository at this point in the history
Better "Location" descriptor in bl_info
Bump version
  • Loading branch information
TiberiumFusion committed Dec 13, 2022
1 parent b9c99e2 commit 2aa813a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions shape_key_tools/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@
bl_info = {
"name": "Shape Key Tools",
"author": "TiberiumFusion",
"version": (2, 2, 1, 0),
"version": (2, 2, 1, 1),
"blender": (2, 78, 0), # This is a guess... I think it was 2.77 or 2.78 that added some of the operators/api we need. Definitely no earlier than 2.75, since that is when support for custom icons was added.
"location": "Object > Tools > Shape Key Tools",
"location": "View3D (Object Mode) > Tool Shelf > Tools > Shape Key Tools",
"description": "Tools for working with shape keys beyond Blender's limited abilities.",
"wiki_url": "https://github.com/TiberiumFusion/BlenderShapeKeyTools",
"tracker_url": "https://github.com/TiberiumFusion/BlenderShapeKeyTools/issues",
Expand Down
2 changes: 1 addition & 1 deletion shape_key_tools/ops/pairs_merge_all.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ def execute(self, context):

if (self.opt_run_async):
context.window_manager.modal_handler_add(self)
self._Timer = context.window_manager.event_timer_add(0.1, context.window)
self._Timer = context.window_manager.event_timer_add(0.01, context.window)
return {"RUNNING_MODAL"}
else:
modalComplete = None
Expand Down

0 comments on commit 2aa813a

Please sign in to comment.