Skip to content

Commit

Permalink
Merge pull request #59960 from GispoCoding/59494_db_default_values
Browse files Browse the repository at this point in the history
Merge features: immediately update widgets for attributes with a provider default value
  • Loading branch information
m-kuhn authored Jan 13, 2025
2 parents 8a689e4 + 028917c commit 9f055dd
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/app/qgsmergeattributesdialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -267,6 +267,11 @@ void QgsMergeAttributesDialog::createTableWidgetContents()
currentComboBox->setCurrentIndex( currentComboBox->findData( QStringLiteral( "manual" ) ) );
currentComboBox->blockSignals( false );
}

const QgsEditorWidgetSetup setup = mFields.at( idx ).editorWidgetSetup();

if ( !setup.isNull() && !setup.type().isEmpty() )
updateManualWidget( j, true );
}
}

Expand Down

0 comments on commit 9f055dd

Please sign in to comment.