1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-12-04 15:50:10 +01:00

Bug968 status bar and mouse preference messages updated for new scrub UI...

... Note too that the mouse preference message for old ctrl-click behavior
is now removed
This commit is contained in:
Paul Licameli
2015-05-24 17:57:51 -04:00
parent 3c88f8ce4d
commit 0d86890657
2 changed files with 16 additions and 15 deletions

View File

@@ -80,12 +80,22 @@ ToolsToolBar::ToolsToolBar()
wxASSERT( drawTool == drawTool - firstTool );
wxASSERT( multiTool == multiTool - firstTool );
{
#ifdef EXPERIMENTAL_SCRUBBING_BASIC
mMessageOfTool[selectTool] =
_("Click and drag to select audio, Middle-Click and drag to scrub, Shift-Middle-Click and drag to seek");
mMessageOfTool[selectTool] =
#if defined(__WXMAC__)
_("Click and drag to select audio, Command-Click and drag to scrub, Shift-Command-Click and drag to seek")
#else
mMessageOfTool[selectTool] = _("Click and drag to select audio");
_("Click and drag to select audio, Ctrl-Click and drag to scrub, Shift-Ctrl-Click and drag to seek")
#endif
;
#else
mMessageOfTool[selectTool] = _("Click and drag to select audio");
#endif
}
mMessageOfTool[envelopeTool] = _("Click and drag to edit the amplitude envelope");
mMessageOfTool[drawTool] = _("Click and drag to edit the samples");
#if defined( __WXMAC__ )