We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a2b82bf commit fc7ac83Copy full SHA for fc7ac83
src/gui/ogr/qgsvectorlayersaveasdialog.cpp
@@ -744,7 +744,8 @@ QStringList QgsVectorLayerSaveAsDialog::layerOptions() const
744
QgsVectorFileWriter::IntOption *opt = dynamic_cast<QgsVectorFileWriter::IntOption *>( *it );
745
QSpinBox *sb = mLayerOptionsGroupBox->findChild<QSpinBox *>( it.key() );
746
if ( opt && sb && sb->value() != opt->defaultValue )
747
- break;
+ options << QStringLiteral( "%1=%2" ).arg( it.key() ).arg( sb->value() );
748
+ break;
749
}
750
751
case QgsVectorFileWriter::Set:
0 commit comments