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
path: root/source
diff options
context:
space:
mode:
authorJonathan Williamson <jonathan@cgcookie.com>2013-10-15 01:41:03 +0400
committerJonathan Williamson <jonathan@cgcookie.com>2013-10-15 01:41:03 +0400
commit913a542468d21ce2fecd1159c8261829c0fc3fad (patch)
tree000f908d4eee04fda8637942aadb0105d56d3ac1 /source
parent34946e7f045344a43b263f78d001d2ed7ec3c26b (diff)
Rename "Show Python Tooltips" to "Python Tooltips"
This makes the naming more consistent with other options, such as "Tooltips" and "Object Info"
Diffstat (limited to 'source')
-rw-r--r--source/blender/makesrna/intern/rna_userdef.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_userdef.c b/source/blender/makesrna/intern/rna_userdef.c
index 20e5083b1c4..2a12194dfa1 100644
--- a/source/blender/makesrna/intern/rna_userdef.c
+++ b/source/blender/makesrna/intern/rna_userdef.c
@@ -2909,7 +2909,7 @@ static void rna_def_userdef_view(BlenderRNA *brna)
prop = RNA_def_property(srna, "show_tooltips_python", PROP_BOOLEAN, PROP_NONE);
RNA_def_property_boolean_negative_sdna(prop, NULL, "flag", USER_TOOLTIPS_PYTHON);
- RNA_def_property_ui_text(prop, "Show Python Tooltips", "Show Python references in tooltips");
+ RNA_def_property_ui_text(prop, "Python Tooltips", "Show Python references in tooltips");
prop = RNA_def_property(srna, "show_object_info", PROP_BOOLEAN, PROP_NONE);
RNA_def_property_boolean_sdna(prop, NULL, "uiflag", USER_DRAWVIEWINFO);