Commit: b19bd3692d79f6b5ccffb87bc0833c01ead4061a Author: Falk David Date: Sat Mar 20 13:39:59 2021 +0100 Branches: master https://developer.blender.org/rBb19bd3692d79f6b5ccffb87bc0833c01ead4061a
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 =================================================================== M release/scripts/startup/bl_operators/object_quick_effects.py =================================================================== 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'} _______________________________________________ Bf-blender-cvs mailing list [email protected] https://lists.blender.org/mailman/listinfo/bf-blender-cvs
