Skip to content

Commit

Permalink
Followup 11f197e
Browse files Browse the repository at this point in the history
Fix #10922
  • Loading branch information
m-kuhn committed Jul 24, 2014
1 parent 1494069 commit e6d3c0b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/app/qgsfeatureaction.cpp
Expand Up @@ -118,7 +118,8 @@ bool QgsFeatureAction::editFeature()
else else
{ {
QgsAttributes src = mFeature.attributes(); QgsAttributes src = mFeature.attributes();
dialog->setIsAddDialog( true ); if ( !mFeature.isValid() )
dialog->setIsAddDialog( true );


if ( dialog->exec() ) if ( dialog->exec() )
{ {
Expand Down

0 comments on commit e6d3c0b

Please sign in to comment.