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:
authorAlessio Monti di Sopra <a.monti>2019-12-02 17:52:28 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-12-02 17:59:06 +0300
commit8b260fec0c7d89c1e9bd0d876176d8d5f7efa036 (patch)
treefe77f2cc7b778daac698d006faa5fc53bb668472
parent7866512627f5e2f9afde474b416996d502cf12e0 (diff)
UI: rename "Toggle ..." back to "Show Markers"
Change made in recent show marker refactor dc87d09b8b324 On writing docs the term "Show" makes more sense.
-rw-r--r--source/blender/makesrna/intern/rna_space.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_space.c b/source/blender/makesrna/intern/rna_space.c
index c97d19f47e5..89c6c05021e 100644
--- a/source/blender/makesrna/intern/rna_space.c
+++ b/source/blender/makesrna/intern/rna_space.c
@@ -4821,7 +4821,7 @@ static void rna_def_space_dopesheet(BlenderRNA *brna)
prop = RNA_def_property(srna, "show_pose_markers", PROP_BOOLEAN, PROP_NONE);
RNA_def_property_boolean_sdna(prop, NULL, "flag", SACTION_POSEMARKERS_SHOW);
RNA_def_property_ui_text(prop,
- "Toggle Pose Markers",
+ "Show Pose Markers",
"Show markers belonging to the active action instead of Scene markers "
"(Action and Shape Key Editors only)");
RNA_def_property_update(prop, NC_SPACE | ND_SPACE_DOPESHEET, NULL);