Proper enum parsing.

This commit is contained in:
Dario 2025-01-21 23:08:17 -03:00 committed by Mr-Wiseguy
parent 4b27916950
commit 0ce32d0add

View File

@ -94,11 +94,14 @@ ConfigOptionRadio::ConfigOptionRadio(Element *parent, uint32_t value, const std:
this->callback = callback;
radio = get_current_context().create_element<Radio>(this);
radio->set_index(value);
radio->add_index_changed_callback(std::bind(&ConfigOptionRadio::index_changed, this, std::placeholders::_1));
for (std::string_view option : options) {
radio->add_option(option);
}
if (value < options.size()) {
radio->set_index(value);
}
}
// ConfigSubMenu