UI: Custom Properties - Rename properties to remove "Use/Is"
There is no need to have use/is in the final name. This is implicitly represented by the checkbox already. This does not change the Python API, only the names we show in the user interface. * Is Library Overridable -> Library Overridable * Use Soft Limits -> Soft Limits Differential Revision: https://developer.blender.org/D15217
This commit is contained in:
parent
96764c3a1f
commit
18960c08fd
@ -1352,7 +1352,7 @@ class WM_OT_properties_edit(Operator):
|
||||
items=rna_custom_property_type_items,
|
||||
)
|
||||
is_overridable_library: BoolProperty(
|
||||
name="Is Library Overridable",
|
||||
name="Library Overridable",
|
||||
description="Allow the property to be overridden when the data-block is linked",
|
||||
default=False,
|
||||
)
|
||||
@ -1363,7 +1363,7 @@ class WM_OT_properties_edit(Operator):
|
||||
# Shared for integer and string properties.
|
||||
|
||||
use_soft_limits: BoolProperty(
|
||||
name="Use Soft Limits",
|
||||
name="Soft Limits",
|
||||
description=(
|
||||
"Limits the Property Value slider to a range, "
|
||||
"values outside the range must be inputted numerically"
|
||||
|
Loading…
x
Reference in New Issue
Block a user