1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-06-24 16:20:05 +02:00

Tooltips for unmodified Play and Record.

This commit is contained in:
James Crook 2017-05-03 09:34:30 +01:00
parent d4726c26ca
commit a53e3010f8

View File

@ -228,7 +228,7 @@ void ControlToolBar::RegenerateTooltips()
{ {
case ID_PLAY_BUTTON: case ID_PLAY_BUTTON:
// Without shift // Without shift
commands.push_back(wxT("Play")); commands.push_back(wxT("PlayStop"));
// With shift // With shift
commands.push_back(_("Loop Play")); commands.push_back(_("Loop Play"));
// For the shortcut tooltip. // For the shortcut tooltip.
@ -236,7 +236,8 @@ void ControlToolBar::RegenerateTooltips()
break; break;
case ID_RECORD_BUTTON: case ID_RECORD_BUTTON:
// Without shift // Without shift
commands.push_back(wxT("Record")); //commands.push_back(wxT("Record"));
commands.push_back(wxT("Record1stChoice"));
{ bool bPreferAppend; { bool bPreferAppend;
gPrefs->Read("/GUI/PreferAppendRecord",&bPreferAppend, true); gPrefs->Read("/GUI/PreferAppendRecord",&bPreferAppend, true);
if( bPreferAppend ){ if( bPreferAppend ){