Some more dual pane select work

This commit is contained in:
Luke Street
2026-05-01 00:26:04 -06:00
parent e0c449f28e
commit ab4eccf1df
9 changed files with 122 additions and 21 deletions
+2 -2
View File
@@ -5,7 +5,7 @@
namespace dusk::ui {
BaseStringButton::BaseStringButton(Rml::Element* parent, Props props)
: ControlledSelectButton(parent, {std::move(props.key)}), mType(std::move(props.type)),
: BaseControlledSelectButton(parent, {std::move(props.key)}), mType(std::move(props.type)),
mMaxLength(props.maxLength) {
mInputListeners.reserve(3);
}
@@ -20,7 +20,7 @@ void BaseStringButton::update() {
focus_input();
}
}
ControlledSelectButton::update();
BaseControlledSelectButton::update();
}
void BaseStringButton::start_editing() {