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() _______________________________________________ Bf-blender-cvs mailing list [email protected] https://lists.blender.org/mailman/listinfo/bf-blender-cvs
