Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix crash when clicking in empty relation editor
  • Loading branch information
m-kuhn committed Aug 10, 2016
1 parent 8249064 commit ec3ea88
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/gui/attributetable/qgsfeaturelistview.cpp
Expand Up @@ -257,7 +257,8 @@ void QgsFeatureListView::mouseReleaseEvent( QMouseEvent *event )
}
else
{
mFeatureSelectionModel->enableSync( true );
if ( mFeatureSelectionModel )
mFeatureSelectionModel->enableSync( true );
}
}

Expand Down

0 comments on commit ec3ea88

Please sign in to comment.