Skip to content

Commit

Permalink
fix crash on return with esc key
Browse files Browse the repository at this point in the history
  • Loading branch information
CyAn84 committed Nov 1, 2024
1 parent 9d826ba commit f8220ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/ui/controllers/focusController.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ void FocusController::nextItem(Direction direction)

reload(direction);

if (m_lvfc) {
if (m_lvfc && isListView(m_focusedItem)) {
direction == Direction::Forward ? focusNextListViewItem() : focusPreviousListViewItem();
qDebug() << "===>> Handling the [ ListView ]...";

Expand Down

0 comments on commit f8220ff

Please # to comment.