Skip to content

Commit

Permalink
Merge pull request #7709 from m-kuhn/fixRelations
Browse files Browse the repository at this point in the history
Fix crash when relations would be recursively nested
  • Loading branch information
m-kuhn committed Aug 25, 2018
2 parents 0782c12 + 00a871a commit 990ddf7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gui/editorwidgets/qgsrelationwidgetwrapper.cpp
Expand Up @@ -48,7 +48,7 @@ void QgsRelationWidgetWrapper::setVisible( bool visible )

void QgsRelationWidgetWrapper::aboutToSave()
{
if ( !mRelation.isValid() )
if ( !mRelation.isValid() || !widget() || !widget()->isVisible() )
return;

// Calling isModified() will emit a beforeModifiedCheck()
Expand Down

0 comments on commit 990ddf7

Please sign in to comment.