Skip to content

Commit

Permalink
Fix geroreferencer crash when deleting a point through context menu
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexis Polti authored and m-kuhn committed Apr 24, 2018
1 parent 2275ebb commit 774ccaf
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/plugins/georeferencer/qgsgcplistwidget.cpp
Expand Up @@ -194,10 +194,6 @@ void QgsGCPListWidget::showContextMenu( QPoint p )
connect( removeAction, &QAction::triggered, this, &QgsGCPListWidget::removeRow );
m.addAction( removeAction );
m.exec( QCursor::pos(), removeAction );

index = static_cast<const QSortFilterProxyModel *>( model() )->mapToSource( index );
mPrevRow = index.row();
mPrevColumn = index.column();
}

void QgsGCPListWidget::removeRow()
Expand All @@ -214,6 +210,8 @@ void QgsGCPListWidget::editCell()
void QgsGCPListWidget::jumpToPoint()
{
QModelIndex index = static_cast<const QSortFilterProxyModel *>( model() )->mapToSource( currentIndex() );
mPrevRow = index.row();
mPrevColumn = index.column();
emit jumpToGCP( index.row() );
}

Expand Down

0 comments on commit 774ccaf

Please sign in to comment.