Bugzilla 458
Posted: Sat Nov 15, 2014 10:58 pm
In srcMenus.cpp function OnPreferences() which is at or near line number 3334, a few lines into the function we see:
I suspect that this code is probably now redundant. Steve reported the bug; he should be able to test the removal of this code and commit the appropriate patch.
Code: Select all
#if defined(__WXGTK__)
// Workaround for:
//
// [url]http://bugzilla.audacityteam.org/show_bug.cgi?id=458[/url]
//
// This should be removed with wxWidgets 2.8.13 is released.
wxRect r = p->GetRect();
p->SetSize(wxSize(1,1));
p->SetSize(r.GetSize());
#endif