Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[gps] Fix default-misconfigured gpsbabel path
Fix #14866
  • Loading branch information
m-kuhn committed Jun 6, 2016
1 parent 70e1c6a commit 4c2567c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/plugins/gps_importer/qgsgpsplugin.cpp
Expand Up @@ -571,7 +571,7 @@ void QgsGPSPlugin::setupBabel()
{
// where is gpsbabel?
QSettings settings;
mBabelPath = settings.value( "/Plugin-GPS/gpsbabelpath", QDir::homePath() ).toString();
mBabelPath = settings.value( "/Plugin-GPS/gpsbabelpath", QString() ).toString();
if ( mBabelPath.isEmpty() )
mBabelPath = "gpsbabel";
// the importable formats
Expand Down

0 comments on commit 4c2567c

Please sign in to comment.