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:
authorRobert Guetzkow <gitcommit@outlook.de>2020-12-01 12:24:10 +0300
committerRobert Guetzkow <gitcommit@outlook.de>2020-12-01 12:27:31 +0300
commit73976fd55a45d48b8e86c163375f26d5c5a7be68 (patch)
tree2e8b1e4f07ecefb4dbdafbd4cb4b3b724a14d65c /greasepencil_tools/__init__.py
parentcde7574c05bd44e172827eafac6f9ffb7fe76a13 (diff)
Fix T83099: Greasepencil add-on keymap item removal
The greasepencil add-on removed keymap items it hadn't created itself, thus invalidating references that other add-ons held for the keymap items they've created. This is fixed by storing a reference to the created keymap items alongside the keymap and only removing those items that the add-on created itself. Additionally, this commit fixes the doc string that was no longer valid. Reviewed By: mont29 Differential Revision: https://developer.blender.org/D9670
Diffstat (limited to 'greasepencil_tools/__init__.py')
-rw-r--r--greasepencil_tools/__init__.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/greasepencil_tools/__init__.py b/greasepencil_tools/__init__.py
index 6891ccb9..02e93c61 100644
--- a/greasepencil_tools/__init__.py
+++ b/greasepencil_tools/__init__.py
@@ -21,11 +21,11 @@ bl_info = {
"name": "Grease Pencil Tools",
"description": "Extra tools for Grease Pencil",
"author": "Samuel Bernou, Antonio Vazquez, Daniel Martinez Lara, Matias Mendiola",
-"version": (1, 1, 5),
+"version": (1, 1, 6),
"blender": (2, 91, 0),
"location": "Sidebar > Grease Pencil > Grease Pencil Tools",
"warning": "",
-"doc_url": "https://docs.blender.org/manual/en/dev/addons/object/grease_pencil_tools.html",
+"doc_url": "{BLENDER_MANUAL_URL}/addons/object/greasepencil_tools.html",
"tracker_url": "https://github.com/Pullusb/greasepencil-addon/issues",
"category": "Object",
"support": "COMMUNITY",