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:
authorPratik Borhade <PratikPB2123>2022-02-18 08:44:16 +0300
committerHans Goudey <h.goudey@me.com>2022-02-18 08:44:16 +0300
commit1d0d810331b0ced05acdba9c75a08948f7b6eaf8 (patch)
treedd96934d93587a118014c10cba0458b50bf370ed /source/blender/modifiers/intern/MOD_nodes.cc
parent3cdbeb32d3779a0e6a89d2529c15f737cc32eae9 (diff)
Fix T93526: Missing tooltip for attribute search button
For the attribute search button, the tooltip was missing if the input socket type has attribute toggle activated. Differential Revision: https://developer.blender.org/D14142
Diffstat (limited to 'source/blender/modifiers/intern/MOD_nodes.cc')
-rw-r--r--source/blender/modifiers/intern/MOD_nodes.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/modifiers/intern/MOD_nodes.cc b/source/blender/modifiers/intern/MOD_nodes.cc
index c5ee4b9fb52..1c755a7e2d9 100644
--- a/source/blender/modifiers/intern/MOD_nodes.cc
+++ b/source/blender/modifiers/intern/MOD_nodes.cc
@@ -1362,7 +1362,7 @@ static void add_attribute_search_button(const bContext &C,
0.0f,
0.0f,
0.0f,
- "");
+ socket.description);
const Object *object = ED_object_context(&C);
BLI_assert(object != nullptr);