mirror of
https://github.com/cookiengineer/audacity
synced 2026-01-13 08:05:52 +01:00
most of David's patch for Bug 712 - Keyboard preferences hotkey search - entering multiple keys
This commit is contained in:
@@ -143,14 +143,17 @@ void KeyConfigPrefs::Populate()
|
|||||||
RefreshBindings();
|
RefreshBindings();
|
||||||
|
|
||||||
if (mViewByTree->GetValue()) {
|
if (mViewByTree->GetValue()) {
|
||||||
mView->SetView(ViewByTree);
|
mViewType = ViewByTree;
|
||||||
}
|
}
|
||||||
else if (mViewByName->GetValue()) {
|
else if (mViewByName->GetValue()) {
|
||||||
mView->SetView(ViewByName);
|
mViewType = ViewByName;
|
||||||
}
|
}
|
||||||
else if (mViewByKey->GetValue()) {
|
else if (mViewByKey->GetValue()) {
|
||||||
mView->SetView(ViewByKey);
|
mViewType = ViewByKey;
|
||||||
|
mFilterLabel->SetLabel(_("&Hotkey:"));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
mView->SetView(mViewType);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Normally in classes derived from PrefsPanel this function
|
/// Normally in classes derived from PrefsPanel this function
|
||||||
|
|||||||
Reference in New Issue
Block a user