mirror of
https://github.com/cookiengineer/audacity
synced 2026-04-04 21:37:36 +02:00
Compensate for wxW 3 tab navigation deficiencies on Mac...
... using char hook event handlers. We don't need to go the extreme length of patching wxWidgets source.
This commit is contained in:
committed by
Paul Licameli
parent
ae14cb0dbc
commit
4739f3e27b
@@ -39,7 +39,7 @@
|
||||
// ExportCLOptions
|
||||
//----------------------------------------------------------------------------
|
||||
|
||||
class ExportCLOptions final : public wxPanel
|
||||
class ExportCLOptions final : public wxPanelWrapper
|
||||
{
|
||||
public:
|
||||
ExportCLOptions(wxWindow *parent, int format);
|
||||
@@ -60,14 +60,14 @@ private:
|
||||
|
||||
#define ID_BROWSE 5000
|
||||
|
||||
BEGIN_EVENT_TABLE(ExportCLOptions, wxPanel)
|
||||
BEGIN_EVENT_TABLE(ExportCLOptions, wxPanelWrapper)
|
||||
EVT_BUTTON(ID_BROWSE, ExportCLOptions::OnBrowse)
|
||||
END_EVENT_TABLE()
|
||||
|
||||
///
|
||||
///
|
||||
ExportCLOptions::ExportCLOptions(wxWindow *parent, int WXUNUSED(format))
|
||||
: wxPanel(parent, wxID_ANY)
|
||||
: wxPanelWrapper(parent, wxID_ANY)
|
||||
{
|
||||
mHistory.Load(*gPrefs, wxT("/FileFormats/ExternalProgramHistory"));
|
||||
|
||||
|
||||
Reference in New Issue
Block a user