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:
authorAntonio Vazquez <blendergit@gmail.com>2020-06-04 17:55:19 +0300
committerAntonio Vazquez <blendergit@gmail.com>2020-06-04 17:55:19 +0300
commitc7a2ed69be6ef23a62e3570dc1475dae2c2171cc (patch)
treed7795b9d5d83063a75ca91b5d6432e92f9cecb66
parentc604d2762f275d8ce27c99ffb1f295006cedac3a (diff)
GPencil: Fix Lock Frame Dopesheet tooltip
The old tooltip was not clear enough
-rw-r--r--source/blender/editors/animation/anim_channels_defines.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/editors/animation/anim_channels_defines.c b/source/blender/editors/animation/anim_channels_defines.c
index cd17a490240..6033523630d 100644
--- a/source/blender/editors/animation/anim_channels_defines.c
+++ b/source/blender/editors/animation/anim_channels_defines.c
@@ -4959,7 +4959,8 @@ static void draw_setting_widget(bAnimContext *ac,
"Temporarily disable NLA stack evaluation (i.e. only the active action is evaluated)");
}
else if (ale->type == ANIMTYPE_GPLAYER) {
- tooltip = TIP_("Lock current frame displayed by layer (i.e. disable animation playback)");
+ tooltip = TIP_(
+ "All keyframes contribute to the result (uncheck to use the current frame only)");
}
else {
tooltip = TIP_("Do channels contribute to result (toggle channel muting)");