1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-06-18 17:10:05 +02:00

Bug 2315 - Mac: Keyboard Preferences is unusable until scrolled.

Second attempt with this bug.  I see a pattern emerging for my
"fixes"!!! :-(
This commit is contained in:
Leland Lucius 2020-03-08 23:18:51 -05:00
parent 37d730edfe
commit 668bcfc82e
3 changed files with 13 additions and 5 deletions

View File

@ -221,10 +221,12 @@ bool ExtImportPrefs::Commit()
void ExtImportPrefs::OnShow(wxShowEvent &event)
{
event.Skip();
if (event.IsShown())
{
RuleTable->Refresh();
PluginList->Refresh();
}
}
void ExtImportPrefs::OnPluginKeyDown(wxListEvent& event)
{

View File

@ -469,8 +469,11 @@ void KeyConfigPrefs::OnShow(wxShowEvent & event)
{
event.Skip();
if (event.IsShown())
{
mView->Refresh();
}
}
void KeyConfigPrefs::OnImport(wxCommandEvent & WXUNUSED(event))
{

View File

@ -221,8 +221,11 @@ void MousePrefs::OnShow(wxShowEvent &event)
{
event.Skip();
if (event.IsShown())
{
mList->Refresh();
}
}
/// Update the preferences stored on disk.
/// Currently does nothing as Mouse Preferences don't change.