[Bf-blender-cvs] [e3e5d595f61] master: Outliner: Remove "ID" from tooltip

Nathan Craddock noreply at git.blender.org
Fri Oct 30 04:52:45 CET 2020


Commit: e3e5d595f61251372eea1f6ffa262734d68f3181
Author: Nathan Craddock
Date:   Thu Oct 29 21:44:16 2020 -0600
Branches: master
https://developer.blender.org/rBe3e5d595f61251372eea1f6ffa262734d68f3181

Outliner: Remove "ID" from tooltip

The concept of IDs shouldn't be exposed to the user.

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

M	source/blender/makesrna/intern/rna_space.c

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

diff --git a/source/blender/makesrna/intern/rna_space.c b/source/blender/makesrna/intern/rna_space.c
index f5f7930964a..84c1ccd30d9 100644
--- a/source/blender/makesrna/intern/rna_space.c
+++ b/source/blender/makesrna/intern/rna_space.c
@@ -3210,7 +3210,7 @@ static void rna_def_space_outliner(BlenderRNA *brna)
   prop = RNA_def_property(srna, "filter_id_type", PROP_ENUM, PROP_NONE);
   RNA_def_property_enum_sdna(prop, NULL, "filter_id_type");
   RNA_def_property_enum_items(prop, rna_enum_id_type_items);
-  RNA_def_property_ui_text(prop, "Filter ID Type", "Data-block type to show");
+  RNA_def_property_ui_text(prop, "Filter by Type", "Data-block type to show");
   RNA_def_property_translation_context(prop, BLT_I18NCONTEXT_ID_ID);
 }



More information about the Bf-blender-cvs mailing list