1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-10-21 14:02:57 +02:00

Script the images for Tracks page of manual.

- There's a problem with stem plot preference.  It isn't reloading properly from batch but is from menu.
This commit is contained in:
James Crook
2018-02-10 22:05:57 +00:00
committed by Paul Licameli
parent 24e8bbc623
commit 65c160212e
3 changed files with 113 additions and 29 deletions

View File

@@ -104,7 +104,7 @@ static const wxString kCaptureWhatStrings[nCaptureWhats] =
XO("Ruler"),
XO("Tracks"),
XO("First_Track"),
XO("Second_Track")
XO("Second_Track"),
XO("Tracks_Plus"),
XO("First_Track_Plus"),
};

View File

@@ -89,7 +89,7 @@ int ExecCommand(wxString *pIn, wxString *pOut)
wxString msg = ScriptCommandRelay::ReceiveResponse().GetMessage();
while (msg != wxT("\n"))
{
wxLogDebug( "Msg: %s", msg );
//wxLogDebug( "Msg: %s", msg );
*pOut += msg + wxT("\n");
msg = ScriptCommandRelay::ReceiveResponse().GetMessage();
}