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:
authorHarley Acheson <harley.acheson@gmail.com>2020-10-20 18:22:59 +0300
committerHarley Acheson <harley.acheson@gmail.com>2020-10-20 18:25:28 +0300
commitc0a0789af5579677e39de69d0fa63b5b5ef85cac (patch)
tree76112726ac01180bb737c3135b156ec4361a2057
parente05ce1ea2029a942ce0d9a9df018b36d0604f0d5 (diff)
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
-rw-r--r--release/scripts/startup/bl_ui/properties_paint_common.py2
1 files changed, 1 insertions, 1 deletions
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()