Fixed typo (#465)

This commit is contained in:
Jan Sende 2022-08-24 19:00:54 +09:00 committed by GitHub
parent ec994a4e65
commit d04e04adc6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -94,7 +94,7 @@ struct MenuOption {
std::function<Element()> elements_postfix; std::function<Element()> elements_postfix;
// Observers: // Observers:
std::function<void()> on_change; ///> Called when the seelcted entry changes. std::function<void()> on_change; ///> Called when the selected entry changes.
std::function<void()> on_enter; ///> Called when the user presses enter. std::function<void()> on_enter; ///> Called when the user presses enter.
Ref<int> focused_entry = 0; Ref<int> focused_entry = 0;
}; };