[display_menu_base] Call on_value_ after updating the select (#12584)

This commit is contained in:
Eduard Llull
2025-12-20 16:59:14 +01:00
committed by GitHub
parent 48cdf9e036
commit 121375ff39

View File

@@ -54,6 +54,7 @@ bool MenuItemSelect::select_next() {
if (this->select_var_ != nullptr) {
this->select_var_->make_call().select_next(true).perform();
this->on_value_();
changed = true;
}
@@ -65,6 +66,7 @@ bool MenuItemSelect::select_prev() {
if (this->select_var_ != nullptr) {
this->select_var_->make_call().select_previous(true).perform();
this->on_value_();
changed = true;
}