[Bf-blender-cvs] [c0a0789af55] master: UI: Sculpt 'Inverse Cursor Color' Label

Harley Acheson noreply at git.blender.org
Tue Oct 20 17:25:37 CEST 2020


Commit: c0a0789af5579677e39de69d0fa63b5b5ef85cac
Author: Harley Acheson
Date:   Tue Oct 20 08:22:59 2020 -0700
Branches: master
https://developer.blender.org/rBc0a0789af5579677e39de69d0fa63b5b5ef85cac

UI: Sculpt 'Inverse Cursor Color' Label

Shorten name of 'Inverse Cursor Color' to 'Inverse Color' so that it does not overflow its popover.

Differential Revision: https://developer.blender.org/D9274

Reviewed by Brecht Van Lommel

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

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

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

diff --git a/release/scripts/startup/bl_ui/properties_paint_common.py b/release/scripts/startup/bl_ui/properties_paint_common.py
index ca93f79df04..2b26ad92a02 100644
--- a/release/scripts/startup/bl_ui/properties_paint_common.py
+++ b/release/scripts/startup/bl_ui/properties_paint_common.py
@@ -485,7 +485,7 @@ class DisplayPanel(BrushPanel):
 
         col.prop(brush, "cursor_color_add", text="Cursor Color")
         if mode == 'SCULPT' and brush.sculpt_capabilities.has_secondary_color:
-            col.prop(brush, "cursor_color_subtract", text="Inverse Cursor Color")
+            col.prop(brush, "cursor_color_subtract", text="Inverse Color")
 
         col.separator()



More information about the Bf-blender-cvs mailing list