[Bf-blender-cvs] [62c820cdaa7] master: UI: avoid using parenthesis

Campbell Barton noreply at git.blender.org
Thu Sep 12 15:03:00 CEST 2019


Commit: 62c820cdaa7c184851ac4ec80b4fe7cf28fc8060
Author: Campbell Barton
Date:   Thu Sep 12 22:52:11 2019 +1000
Branches: master
https://developer.blender.org/rB62c820cdaa7c184851ac4ec80b4fe7cf28fc8060

UI: avoid using parenthesis

Convention is not to use parenthesis,
Details are included in tool-tip.

===================================================================

M	release/scripts/startup/bl_ui/space_view3d_toolbar.py

===================================================================

diff --git a/release/scripts/startup/bl_ui/space_view3d_toolbar.py b/release/scripts/startup/bl_ui/space_view3d_toolbar.py
index ccd777f799c..be0690cc55d 100644
--- a/release/scripts/startup/bl_ui/space_view3d_toolbar.py
+++ b/release/scripts/startup/bl_ui/space_view3d_toolbar.py
@@ -152,7 +152,7 @@ class VIEW3D_PT_tools_object_options_transform(View3DPanel, Panel):
         layout.label(text="Affect Only")
         layout.prop(tool_settings, "use_transform_data_origin", text="Origins")
         layout.prop(tool_settings, "use_transform_pivot_point_align", text="Locations")
-        layout.prop(tool_settings, "use_transform_skip_children", text="Parents (Skip Children)")
+        layout.prop(tool_settings, "use_transform_skip_children", text="Parents")
 
 
 # ********** default tools for editmode_mesh ****************



More information about the Bf-blender-cvs mailing list