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:
@@ -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__ )
|
||||
|
||||
Reference in New Issue
Block a user