Skip to content

Commit

Permalink
Fix #1300 the Play button tooltip
Browse files Browse the repository at this point in the history
  • Loading branch information
chchwy committed Jan 15, 2020
1 parent 4a5f8b6 commit 6ebc293
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions core_lib/src/interface/timecontrols.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -88,8 +88,8 @@ void TimeControls::initUI()
mPlayButton->setToolTip(tr("Play"));
mLoopButton->setToolTip(tr("Loop"));
mSoundButton->setToolTip(tr("Sound on/off"));
mJumpToEndButton->setToolTip(tr("End"));
mJumpToStartButton->setToolTip(tr("Start"));
mJumpToEndButton->setToolTip(tr("Jump to the End", "Tooltip of the jump to end button"));
mJumpToStartButton->setToolTip(tr("Jump to the Start", "Tooltip of the jump to start button"));

mLoopButton->setCheckable(true);
mSoundButton->setCheckable(true);
Expand Down Expand Up @@ -191,7 +191,7 @@ void TimeControls::updatePlayState()
else
{
mPlayButton->setIcon(mStartIcon);
mPlayButton->setToolTip(tr("Start"));
mPlayButton->setToolTip(tr("Play"));
}
}

Expand Down

0 comments on commit 6ebc293

Please sign in to comment.