Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFalk David <falkdavid@gmx.de>2021-03-20 15:39:59 +0300
committerFalk David <falkdavid@gmx.de>2021-03-20 15:44:36 +0300
commitb19bd3692d79f6b5ccffb87bc0833c01ead4061a (patch)
tree247a36405155c92d00e7c76ae77684fedc26d2ee
parent95a2549d90bf63c5976356d6a45f52335845e546 (diff)
Fix T86746: Description missing from Quick Liquid
The description was missing from the Quick Liquid operator. The fix adds the following description: "Make selected objects liquid" Reviewed By: sebbas Maniphest Tasks: T86746 Differential Revision: https://developer.blender.org/D10777
-rw-r--r--release/scripts/startup/bl_operators/object_quick_effects.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/release/scripts/startup/bl_operators/object_quick_effects.py b/release/scripts/startup/bl_operators/object_quick_effects.py
index a34ed019148..e319c0c3074 100644
--- a/release/scripts/startup/bl_operators/object_quick_effects.py
+++ b/release/scripts/startup/bl_operators/object_quick_effects.py
@@ -441,6 +441,7 @@ class QuickSmoke(ObjectModeOperator, Operator):
class QuickLiquid(Operator):
+ """Make selected objects liquid"""
bl_idname = "object.quick_liquid"
bl_label = "Quick Liquid"
bl_options = {'REGISTER', 'UNDO'}