We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 04fb6f9 commit d4dd873Copy full SHA for d4dd873
src/paramsUi.cpp
@@ -428,6 +428,12 @@ class ParamsDialog {
428
} else if (LOWORD(wParam) == ID_PARAM_FILTER && HIWORD(wParam) == EN_KILLFOCUS) {
429
dialog->onFilterChange();
430
return TRUE;
431
+ } else if (LOWORD(wParam) == ID_PARAM &&
432
+ HIWORD(wParam) == CBN_SETFOCUS) {
433
+ // Changing a param value might update param names; e.g. changing the
434
+ // band type in ReaEq.
435
+ dialog->updateParamList();
436
+ return TRUE;
437
} else if (LOWORD(wParam) == ID_PARAM_VAL_EDIT && HIWORD(wParam) ==EN_KILLFOCUS) {
438
dialog->onValueEdited();
439
0 commit comments