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:
authorPhilipp Oeser <info@graphics-engineer.com>2021-11-09 19:07:41 +0300
committerPhilipp Oeser <info@graphics-engineer.com>2021-11-09 19:07:41 +0300
commite5fb5c9d7b86aac24802f631fb54608003609456 (patch)
treebad27e46e1e108e516ff870a1366757ad14ed7cc
parente452c43fd6a6ac5a483f3811272a17588e702ed8 (diff)
parent570331ca96a5e7a30c8896a07aad1960d5bd706e (diff)
Merge branch 'blender-v3.0-release'
-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 a48210e4cf4..6ea47881982 100644
--- a/source/blender/modifiers/intern/MOD_nodes.cc
+++ b/source/blender/modifiers/intern/MOD_nodes.cc
@@ -1362,8 +1362,8 @@ static void draw_property_for_socket(const bContext &C,
}
else {
uiLayout *row = uiLayoutRow(layout, false);
+ uiLayoutSetPropDecorate(row, true);
uiItemR(row, md_ptr, rna_path, 0, socket.name, ICON_NONE);
- uiItemDecoratorR(row, md_ptr, rna_path, 0);
}
}
}