diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-01-01 12:18:40 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-01-01 12:18:40 +0300 |
commit | 9c47e5cfc0e91071e0b5ad12b08f7d0c017d7856 (patch) | |
tree | d4d4912b29813f51689db6cfdd75433fd6beb706 /src/client.cpp | |
parent | 05e6289b28c26df11b38a71e737017d64d22b029 (diff) | |
download | plus-9c47e5cfc0e91071e0b5ad12b08f7d0c017d7856.tar.gz plus-9c47e5cfc0e91071e0b5ad12b08f7d0c017d7856.tar.bz2 plus-9c47e5cfc0e91071e0b5ad12b08f7d0c017d7856.tar.xz plus-9c47e5cfc0e91071e0b5ad12b08f7d0c017d7856.zip |
Remove free space from top and right in buttons menu.
Diffstat (limited to 'src/client.cpp')
-rw-r--r-- | src/client.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client.cpp b/src/client.cpp index ce265ee15..a96f50395 100644 --- a/src/client.cpp +++ b/src/client.cpp @@ -885,7 +885,7 @@ int Client::testsExec() const #define ADDBUTTON(var, object) var = object; \ x -= var->getWidth() + 6; \ - var->setPosition(x, 3); \ + var->setPosition(x, 0); \ top->add(var); |