[Bf-blender-cvs] [cc6d5bc241f] master: Fix: typo in info message

Jacques Lucke noreply at git.blender.org
Wed Oct 27 15:31:08 CEST 2021


Commit: cc6d5bc241fd453c361c42d50b3a8ca9058bbaee
Author: Jacques Lucke
Date:   Wed Oct 27 15:31:00 2021 +0200
Branches: master
https://developer.blender.org/rBcc6d5bc241fd453c361c42d50b3a8ca9058bbaee

Fix: typo in info message

===================================================================

M	source/blender/nodes/intern/node_geometry_exec.cc

===================================================================

diff --git a/source/blender/nodes/intern/node_geometry_exec.cc b/source/blender/nodes/intern/node_geometry_exec.cc
index bcf6ff2fcf6..c7a3e795c33 100644
--- a/source/blender/nodes/intern/node_geometry_exec.cc
+++ b/source/blender/nodes/intern/node_geometry_exec.cc
@@ -52,13 +52,14 @@ void GeoNodeExecParams::check_input_geometry_set(StringRef identifier,
 
   if (only_realized_data) {
     if (geometry_set.has_instances()) {
-      this->error_message_add(NodeWarningType::Info, "Instances in input geometry are ignored");
+      this->error_message_add(NodeWarningType::Info,
+                              TIP_("Instances in input geometry are ignored"));
     }
   }
   if (only_instances) {
     if (geometry_set.has_realized_data()) {
       this->error_message_add(NodeWarningType::Info,
-                              "Realized data in input geometry are ignored");
+                              TIP_("Realized data in input geometry is ignored"));
     }
   }
   if (supported_types.is_empty()) {



More information about the Bf-blender-cvs mailing list