[display_menu_base] clang-tidy fixes for #7822 (#7847)

This commit is contained in:
Keith Burzinski 2024-11-26 03:52:26 -06:00 committed by GitHub
parent 2eac8b6c46
commit 1c2d2bce5a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -280,7 +280,7 @@ bool DisplayMenuComponent::cursor_down_() {
bool DisplayMenuComponent::enter_menu_() { bool DisplayMenuComponent::enter_menu_() {
this->displayed_item_->on_leave(); this->displayed_item_->on_leave();
this->displayed_item_ = static_cast<MenuItemMenu *>(this->get_selected_item_()); this->displayed_item_ = static_cast<MenuItemMenu *>(this->get_selected_item_());
this->selection_stack_.push_front({this->top_index_, this->cursor_index_}); this->selection_stack_.emplace_front(this->top_index_, this->cursor_index_);
this->cursor_index_ = this->top_index_ = 0; this->cursor_index_ = this->top_index_ = 0;
this->displayed_item_->on_enter(); this->displayed_item_->on_enter();