We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
qgis
Learn more about funding links in repositories.
Report abuse
There was an error while loading. Please reload this page.
1 parent af6b4cc commit 8991482Copy full SHA for 8991482
src/gui/ogr/qgsvectorlayersaveasdialog.cpp
@@ -360,12 +360,12 @@ void QgsVectorLayerSaveAsDialog::mFormatComboBox_currentIndexChanged( int idx )
360
const QString sFormat( format() );
361
if ( sFormat == QLatin1String( "DXF" ) || sFormat == QLatin1String( "DGN" ) )
362
{
363
- mAttributesSelection->setEnabled( false );
+ mAttributesSelection->setVisible( false );
364
selectAllFields = false;
365
}
366
else
367
368
- mAttributesSelection->setEnabled( true );
+ mAttributesSelection->setVisible( true );
369
fieldsAsDisplayedValues = ( sFormat == QLatin1String( "CSV" ) || sFormat == QLatin1String( "XLS" ) || sFormat == QLatin1String( "XLSX" ) || sFormat == QLatin1String( "ODS" ) );
370
371
0 commit comments