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:
authorRyan Inch <mythologylover75@gmail.com>2020-08-02 07:33:26 +0300
committerRyan Inch <mythologylover75@gmail.com>2020-08-02 07:33:26 +0300
commitcfd0a58e26e5bd3a49df3b01c95dfd65a3865327 (patch)
tree852185228a592c4d1bac1abd9013868c54193e63
parentadac42a463344b288882954e57fca0715ee398f3 (diff)
Collection Manager: Fix tooltip. Task: T69577
Fix Apply Phantom Mode tooltip to be clearer.
-rw-r--r--object_collection_manager/__init__.py2
-rw-r--r--object_collection_manager/operators.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/object_collection_manager/__init__.py b/object_collection_manager/__init__.py
index 1e74a3c0..4fe792bb 100644
--- a/object_collection_manager/__init__.py
+++ b/object_collection_manager/__init__.py
@@ -22,7 +22,7 @@ bl_info = {
"name": "Collection Manager",
"description": "Manage collections and their objects",
"author": "Ryan Inch",
- "version": (2, 12, 3),
+ "version": (2, 12, 4),
"blender": (2, 80, 0),
"location": "View3D - Object Mode (Shortcut - M)",
"warning": '', # used for warning icon and text in addons panel
diff --git a/object_collection_manager/operators.py b/object_collection_manager/operators.py
index 177ab3d7..08c90224 100644
--- a/object_collection_manager/operators.py
+++ b/object_collection_manager/operators.py
@@ -1100,7 +1100,7 @@ class CMPhantomModeOperator(Operator):
class CMApplyPhantomModeOperator(Operator):
- '''Make all changes made in Phantom Mode permanent'''
+ '''Apply changes and quit Phantom Mode'''
bl_label = "Apply Phantom Mode"
bl_idname = "view3d.apply_phantom_mode"