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 b426162 commit 1a91ae8Copy full SHA for 1a91ae8
src/app/ogr/qgsopenvectorlayerdialog.cpp
@@ -271,7 +271,9 @@ void QgsOpenVectorLayerDialog::on_buttonSelectSrc_clicked()
271
{
272
if ( radioSrcFile->isChecked() )
273
274
- inputSrcDataset->setText( openFile().join( ";" ) );
+ QStringList selected = openFile();
275
+ if ( selected.count() > 0 )
276
+ inputSrcDataset->setText( selected.join( ";" ) );
277
}
278
else if ( radioSrcDirectory->isChecked() )
279
0 commit comments