Skip to content

Commit

Permalink
add tooltip for WTrackProperty's select'n'click inline editor
Browse files Browse the repository at this point in the history
  • Loading branch information
ronso0 committed Feb 11, 2024
1 parent 8557672 commit 83773d4
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions src/skin/legacy/tooltips.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ void Tooltips::addStandardTooltips() {
QString leftClick = tr("Left-click");
QString rightClick = tr("Right-click");
QString doubleClick = tr("Double-click");
QString selectedClick = tr("Select and click: Show inline value editor");
QString scrollWheel = tr("Scroll-wheel");
QString shift = tr("Shift-key");
QString loopActive = "(" + tr("loop active") + ")";
Expand Down Expand Up @@ -794,7 +795,8 @@ void Tooltips::addStandardTooltips() {
<< dropTracksHere
<< dragItem
<< QString("%1: %2").arg(doubleClick, trackProperties)
<< QString("%1: %2").arg(rightClick, trackMenu);
<< QString("%1: %2").arg(rightClick, trackMenu)
<< selectedClick;

add("track_title")
<< tr("Track Title")
Expand All @@ -803,7 +805,8 @@ void Tooltips::addStandardTooltips() {
<< dropTracksHere
<< dragItem
<< QString("%1: %2").arg(doubleClick, trackProperties)
<< QString("%1: %2").arg(rightClick, trackMenu);
<< QString("%1: %2").arg(rightClick, trackMenu)
<< selectedClick;

add("track_album")
<< tr("Track Album")
Expand All @@ -812,7 +815,8 @@ void Tooltips::addStandardTooltips() {
<< dropTracksHere
<< dragItem
<< QString("%1: %2").arg(doubleClick, trackProperties)
<< QString("%1: %2").arg(rightClick, trackMenu);
<< QString("%1: %2").arg(rightClick, trackMenu)
<< selectedClick;

add("track_key")
//: The musical key of a track
Expand All @@ -836,7 +840,8 @@ void Tooltips::addStandardTooltips() {
<< dropTracksHere
<< dragItem
<< QString("%1: %2").arg(doubleClick, trackProperties)
<< QString("%1: %2").arg(rightClick, trackMenu);
<< QString("%1: %2").arg(rightClick, trackMenu)
<< selectedClick;

add("time")
<< tr("Clock")
Expand Down

0 comments on commit 83773d4

Please sign in to comment.