Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix crash when holding tab key in some circumstances
Fixes #44669
  • Loading branch information
nyalldawson committed Aug 17, 2021
1 parent 06b3b16 commit 8e7e751
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions src/gui/locator/qgslocatorwidget.cpp
Expand Up @@ -401,16 +401,24 @@ void QgsLocatorResultsView::recalculateSize()

void QgsLocatorResultsView::selectNextResult()
{
const int rowCount = model()->rowCount( QModelIndex() );
if ( rowCount == 0 )
return;

int nextRow = currentIndex().row() + 1;
nextRow = nextRow % model()->rowCount( QModelIndex() );
nextRow = nextRow % rowCount;
setCurrentIndex( model()->index( nextRow, 0 ) );
}

void QgsLocatorResultsView::selectPreviousResult()
{
const int rowCount = model()->rowCount( QModelIndex() );
if ( rowCount == 0 )
return;

int previousRow = currentIndex().row() - 1;
if ( previousRow < 0 )
previousRow = model()->rowCount( QModelIndex() ) - 1;
previousRow = rowCount - 1;
setCurrentIndex( model()->index( previousRow, 0 ) );
}

Expand Down

0 comments on commit 8e7e751

Please sign in to comment.