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:
authorLukas Tönne <lukas.toenne@gmail.com>2021-07-30 08:23:16 +0300
committerLukas Tönne <lukas.toenne@gmail.com>2021-07-30 08:23:16 +0300
commit8ede468a5d0e5f9d40d1883b7a13ed13b2d07c26 (patch)
treed6cd5985ad5dbdc36717b68dc8973af07c8b3ded
parentdf4e97214d6a3d89d730ea782f00687464ed952b (diff)
Fix UI label for falloff type.
-rw-r--r--source/blender/nodes/geometry/nodes/node_geo_attribute_range_query.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/nodes/geometry/nodes/node_geo_attribute_range_query.cc b/source/blender/nodes/geometry/nodes/node_geo_attribute_range_query.cc
index 3d697936d92..c841eaa45b6 100644
--- a/source/blender/nodes/geometry/nodes/node_geo_attribute_range_query.cc
+++ b/source/blender/nodes/geometry/nodes/node_geo_attribute_range_query.cc
@@ -71,7 +71,7 @@ static void geo_node_attribute_range_query_layout(uiLayout *layout,
uiItemR(layout, ptr, "mode", 0, IFACE_("Mode"), ICON_NONE);
if (node_storage.mode == GEO_NODE_ATTRIBUTE_RANGE_QUERY_FALLOFF) {
- uiItemR(layout, ptr, "falloff_type", 0, IFACE_("Invert Type"), ICON_NONE);
+ uiItemR(layout, ptr, "falloff_type", 0, IFACE_("Falloff Type"), ICON_NONE);
uiItemR(layout, ptr, "invert_falloff", 0, IFACE_("Invert Falloff"), ICON_NONE);
if (node_storage.falloff_type == GEO_NODE_ATTRIBUTE_RANGE_QUERY_FALLOFF_CURVE) {