We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0969c08 commit 33422f8Copy full SHA for 33422f8
src/paramsUi.cpp
@@ -418,6 +418,12 @@ class ParamsDialog {
418
} else if (LOWORD(wParam) == ID_PARAM_FILTER && HIWORD(wParam) == EN_KILLFOCUS) {
419
dialog->onFilterChange();
420
return TRUE;
421
+ } else if (LOWORD(wParam) == ID_PARAM &&
422
+ HIWORD(wParam) == CBN_SETFOCUS) {
423
+ // Changing a param value might update param names; e.g. changing the
424
+ // band type in ReaEq.
425
+ dialog->updateParamList();
426
+ return TRUE;
427
} else if (LOWORD(wParam) == ID_PARAM_VAL_EDIT && HIWORD(wParam) ==EN_KILLFOCUS) {
428
dialog->onValueEdited();
429
0 commit comments