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:
authorBastien Montagne <bastien@blender.org>2021-11-02 19:49:52 +0300
committerBastien Montagne <bastien@blender.org>2021-11-02 19:49:52 +0300
commit242ad4bd0fed9828c71af05e9184f548cb79dd6a (patch)
tree01f0188bfbcaf9c8c939d2f23e09f75ac2dcf35c /source/blender
parent27621490c22ab9e1d7ccf6984b3f7b1c118c0dd1 (diff)
parent20b163b53309fb6fbbb5aab78cde0d14e163e3b4 (diff)
Merge branch 'blender-v3.0-release'
Diffstat (limited to 'source/blender')
-rw-r--r--source/blender/modifiers/intern/MOD_nodes.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/modifiers/intern/MOD_nodes.cc b/source/blender/modifiers/intern/MOD_nodes.cc
index 29bfa382674..f87ff844acf 100644
--- a/source/blender/modifiers/intern/MOD_nodes.cc
+++ b/source/blender/modifiers/intern/MOD_nodes.cc
@@ -1409,7 +1409,7 @@ static void panel_draw(const bContext *C, Panel *panel)
if (has_legacy_node) {
uiLayout *row = uiLayoutRow(layout, false);
- uiItemL(row, N_("Node tree has legacy node"), ICON_ERROR);
+ uiItemL(row, TIP_("Node tree has legacy node"), ICON_ERROR);
uiLayout *sub = uiLayoutRow(row, false);
uiLayoutSetAlignment(sub, UI_LAYOUT_ALIGN_RIGHT);
uiItemO(sub, "", ICON_VIEWZOOM, "NODE_OT_geometry_node_view_legacy");
@@ -1438,7 +1438,7 @@ static void output_attribute_panel_draw(const bContext *UNUSED(C), Panel *panel)
}
}
if (!has_output_attribute) {
- uiItemL(layout, N_("No group output attributes connected"), ICON_INFO);
+ uiItemL(layout, TIP_("No group output attributes connected"), ICON_INFO);
}
}