Skip to content

Commit cf22127

Browse files
authoredApr 29, 2020
Allow map interactions when multiedit window is open
Fix #36059
1 parent 7d41d3a commit cf22127

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed
 

‎src/app/qgisapp.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9318,7 +9318,8 @@ void QgisApp::modifyAttributesOfSelectedFeatures()
93189318

93199319
QgsAttributeDialog *dialog = new QgsAttributeDialog( vl, &f, false, this, true, context );
93209320
dialog->setMode( QgsAttributeEditorContext::MultiEditMode );
9321-
dialog->exec();
9321+
dialog->setAttribute( Qt::WA_DeleteOnClose );
9322+
dialog->show();
93229323
}
93239324

93249325
void QgisApp::mergeSelectedFeatures()

0 commit comments

Comments
 (0)
Please sign in to comment.