diff options
Diffstat (limited to 'client/Config.cpp')
-rwxr-xr-x | client/Config.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/Config.cpp b/client/Config.cpp index 4c31039..31e5189 100755 --- a/client/Config.cpp +++ b/client/Config.cpp @@ -80,7 +80,7 @@ Config::Config(): QObject(), StaticProxySpeedLow(50) else if (key.compare("speed_visibility") == 0) { IsSpeedVisible = false; - if (value.compare("true")) + if (value.compare("1") == 0) { IsSpeedVisible = true; } |