From f115926de8d8c9a63762b6ab4d9800fa6cbee14c Mon Sep 17 00:00:00 2001 From: fsaimon Date: Tue, 19 Jun 2018 22:11:52 +0800 Subject: [PATCH] fix config button did not work when path of rclone.conf was specified --- src/utils.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils.cpp b/src/utils.cpp index 659d15bd..50f18453 100644 --- a/src/utils.cpp +++ b/src/utils.cpp @@ -143,7 +143,7 @@ QStringList GetRcloneConf() { conf = QDir(qApp->applicationDirPath()).filePath(conf); } - return QStringList() << "--config" << conf; + return QStringList() << " --config" << conf; } void SetRcloneConf(const QString& rcloneConf)