mirror of
https://github.com/cookiengineer/audacity
synced 2025-11-14 17:14:07 +01:00
Track panel tooltips, including TAB key hint...
... and distinguish snapping or not in Select tool.
This commit is contained in:
@@ -963,6 +963,14 @@ HitTestPreview SelectHandle::Preview
|
||||
if (ttb)
|
||||
tip = ttb->GetMessageForTool(selectTool);
|
||||
}
|
||||
if (HasRotation()) {
|
||||
tip += wxT(" ") + (mUseSnap
|
||||
/* i18n-hint: "Snapping" means automatic alignment of selection edges to any nearby label or clip boundaries */
|
||||
? _("(snapping)")
|
||||
/* i18n-hint: "Snapping" means automatic alignment of selection edges to any nearby label or clip boundaries */
|
||||
: _("(not snapping)")
|
||||
);
|
||||
}
|
||||
return { tip, pCursor };
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user