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:
authorJoshua Leung <aligorith@gmail.com>2016-04-17 03:26:44 +0300
committerJoshua Leung <aligorith@gmail.com>2016-04-17 03:27:12 +0300
commitfacc127e727ed34d385b069edcf83a443a1c75c0 (patch)
tree9c8384443ada617d24c60c03b61abef5ae1ca9b9 /source/blender/editors/space_time
parent1dfbcd88d5f64094062b0856539d894da0768478 (diff)
"View Frame" now works in the sequencer too
Diffstat (limited to 'source/blender/editors/space_time')
-rw-r--r--source/blender/editors/space_time/time_ops.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/space_time/time_ops.c b/source/blender/editors/space_time/time_ops.c
index 35f17ee4f00..a7f549b65ae 100644
--- a/source/blender/editors/space_time/time_ops.c
+++ b/source/blender/editors/space_time/time_ops.c
@@ -192,7 +192,7 @@ static void TIME_OT_view_frame(wmOperatorType *ot)
/* identifiers */
ot->name = "View Frame";
ot->idname = "TIME_OT_view_frame";
- ot->description = "Show the entire playable frame range";
+ ot->description = "Reset viewable area to show range around current frame";
/* api callbacks */
ot->exec = time_view_frame_exec;