Skip to content

Commit

Permalink
Fix crash when holding tab key in some circumstances
Browse files Browse the repository at this point in the history
Fixes #44669
  • Loading branch information
nyalldawson authored and github-actions[bot] committed Aug 17, 2021
1 parent e5b665e commit 615069e
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions src/gui/locator/qgslocatorwidget.cpp
Expand Up @@ -388,16 +388,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 615069e

Please sign in to comment.