diff --git a/CHANGELOG.md b/CHANGELOG.md index 9c9b1f9..9fa3f80 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,11 @@ # Changelog -1.1.2: +1.2.2: + +- fix: realign anim return error + +1.2.1: - fix: Breakdowner initial error check diff --git a/OP_realign.py b/OP_realign.py index eedf801..3e35674 100644 --- a/OP_realign.py +++ b/OP_realign.py @@ -297,7 +297,7 @@ class GPTB_OT_realign(bpy.types.Operator): align_all_frames(reproject=self.reproject) print(f'\nAnim realign ({time()-t0:.2f}s)') self.exit(context, oframe) - return + return {"FINISHED"} align_global(reproject=self.reproject) print(f'\nGlobal Realign ({time()-t0:.2f}s)') diff --git a/__init__.py b/__init__.py index 8ed4aad..7577456 100644 --- a/__init__.py +++ b/__init__.py @@ -15,7 +15,7 @@ bl_info = { "name": "GP toolbox", "description": "Set of tools for Grease Pencil in animation production", "author": "Samuel Bernou", -"version": (1, 2, 1), +"version": (1, 2, 2), "blender": (2, 91, 0), "location": "sidebar (N menu) > Gpencil > Toolbox / Gpencil properties", "warning": "",