Correct the tooltip for 'Shift to Current Frame'

Originally committed to SVN as r6382.
This commit is contained in:
Thomas Goyne 2012-01-27 20:04:05 +00:00
parent 78f1198426
commit 642a9df2bf
1 changed files with 2 additions and 2 deletions

View File

@ -120,12 +120,12 @@ struct time_continuous_start : public validate_adjoinable {
};
/// Shift selection so first selected line starts at current frame.
/// Shift selection so that the active line starts at current frame.
struct time_frame_current : public validate_video_loaded {
CMD_NAME("time/frame/current")
STR_MENU("Shift to &Current Frame")
STR_DISP("Shift to Current Frame")
STR_HELP("Shift selection so first selected line starts at current frame.")
STR_HELP("Shift selection so that the active line starts at current frame.")
void operator()(agi::Context *c) {
if (!c->videoController->IsLoaded()) return;