mirror of
https://github.com/ArthurSonzogni/FTXUI.git
synced 2025-09-17 16:38:09 +08:00
Added on_enter() method to toggle
component
This commit is contained in:

committed by
Arthur Sonzogni

parent
a4d72c4d50
commit
33a970530b
@@ -40,10 +40,17 @@ bool Toggle::OnEvent(Event event) {
|
||||
|
||||
selected = std::max(0, std::min(int(entries.size()) - 1, selected));
|
||||
|
||||
if (old_selected != selected)
|
||||
if (old_selected != selected) {
|
||||
on_change();
|
||||
return true;
|
||||
}
|
||||
|
||||
return old_selected != selected;
|
||||
if (event == Event::Return) {
|
||||
on_enter();
|
||||
return true;
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
} // namespace ftxui
|
||||
|
Reference in New Issue
Block a user