Skip to content

Commit

Permalink
fix #223
Browse files Browse the repository at this point in the history
  • Loading branch information
sunderme committed Jul 4, 2018
1 parent 016cab9 commit e46e9fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/configmanager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -751,7 +751,7 @@ QString ConfigManager::portableConfigDir()

bool ConfigManager::isPortableMode()
{
return QDir(portableConfigDir()).exists();
return (QDir(portableConfigDir()).exists() || !configDirOverride.isEmpty());
}

/*!
Expand Down

0 comments on commit e46e9fc

Please sign in to comment.