Thanks to Leland the libflac version now works from CVS however I have
discovered two unrelated bugs
The key '1' defaults to 'PlayOneSec' so this makes the TimeTextCntl
unusable as every time you try to enter a 1 character it plays for one
second
to fix this I changed
c->AddCommand(wxT("PlayOneSec"), _("Play One Second\tShift+1")
in menus.cpp
The other bug was that the TimeTextCntl was handling events every key
update in it rather than letting the user enter the updated start and
end point and press the enter key once done.
to fix this I changed
EVT_TEXT(AnyTextCtrlID, TimeTextCtrl::OnText)
to
EVT_TEXT_ENTER(AnyTextCtrlID, TimeTextCtrl::OnText)
in the file TimeTextCtrl.cpp
Cheers
Jim
|