diff options
author | Alex Borisov <b0ric.alex@gmail.com> | 2012-02-05 15:10:57 +0200 |
---|---|---|
committer | Alex Borisov <b0ric.alex@gmail.com> | 2012-02-05 15:10:57 +0200 |
commit | b4caa570592b5b6ddaa10ca529bda3c80476c7fd (patch) | |
tree | 52523ea23e0225402eafc32188b0a2cbba98fc57 /client/Config.cpp | |
parent | cce3545422b24ea0acda858f28083f0f3f2dd374 (diff) |
FIX: static proxy button count and position
Diffstat (limited to 'client/Config.cpp')
-rw-r--r-- | client/Config.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/Config.cpp b/client/Config.cpp index a7d6fc7..8fdd507 100644 --- a/client/Config.cpp +++ b/client/Config.cpp @@ -229,7 +229,7 @@ vector<ProxyEntryStatic> Config::GetStaticProxyGuiLine(unsigned line) vector<ProxyEntryStatic> staticProxyLine; for (unsigned i = 0; i < staticProxy.size(); i++) { - if (staticProxy[i].position != line) + if (staticProxy[i].position == line) staticProxyLine.push_back(staticProxy[i]); } |