Skip to content

Commit 4c2567c

Browse files
committedJun 6, 2016
[gps] Fix default-misconfigured gpsbabel path
Fix #14866
1 parent 70e1c6a commit 4c2567c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/plugins/gps_importer/qgsgpsplugin.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -571,7 +571,7 @@ void QgsGPSPlugin::setupBabel()
571571
{
572572
// where is gpsbabel?
573573
QSettings settings;
574-
mBabelPath = settings.value( "/Plugin-GPS/gpsbabelpath", QDir::homePath() ).toString();
574+
mBabelPath = settings.value( "/Plugin-GPS/gpsbabelpath", QString() ).toString();
575575
if ( mBabelPath.isEmpty() )
576576
mBabelPath = "gpsbabel";
577577
// the importable formats

0 commit comments

Comments
 (0)
Please sign in to comment.