summaryrefslogtreecommitdiff
path: root/src/gui/windows/serverdialog.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2017-12-25 06:12:48 +0300
committerAndrei Karas <akaras@inbox.ru>2017-12-25 06:12:48 +0300
commitf55baadfeb6245899497cd472f65f23e905481b9 (patch)
treed5d3dfa758d9d46cf91bc81e0190ee67c7bc48e7 /src/gui/windows/serverdialog.cpp
parent52039744fa2e5e116548e5236cd8ba5f5d81702a (diff)
downloadplus-f55baadfeb6245899497cd472f65f23e905481b9.tar.gz
plus-f55baadfeb6245899497cd472f65f23e905481b9.tar.bz2
plus-f55baadfeb6245899497cd472f65f23e905481b9.tar.xz
plus-f55baadfeb6245899497cd472f65f23e905481b9.zip
Remove default parameters from containerplacer.
Diffstat (limited to 'src/gui/windows/serverdialog.cpp')
-rw-r--r--src/gui/windows/serverdialog.cpp18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/gui/windows/serverdialog.cpp b/src/gui/windows/serverdialog.cpp
index 1970e8ca4..72b8fdf1f 100644
--- a/src/gui/windows/serverdialog.cpp
+++ b/src/gui/windows/serverdialog.cpp
@@ -155,15 +155,15 @@ ServerDialog::ServerDialog(ServerInfo *const serverInfo,
usedScroll->setVerticalScrollAmount(0);
place(0, 0, usedScroll, 8, 5).setPadding(3);
- place(0, 5, mDescription, 8);
- place(0, 6, mPersistentIPCheckBox, 8);
- place(0, 7, mInfoButton);
- place(1, 7, mAddEntryButton);
- place(2, 7, mEditEntryButton);
- place(3, 7, mLoadButton);
- place(4, 7, mDeleteButton);
- place(6, 7, mQuitButton);
- place(7, 7, mConnectButton);
+ place(0, 5, mDescription, 8, 1);
+ place(0, 6, mPersistentIPCheckBox, 8, 1);
+ place(0, 7, mInfoButton, 1, 1);
+ place(1, 7, mAddEntryButton, 1, 1);
+ place(2, 7, mEditEntryButton, 1, 1);
+ place(3, 7, mLoadButton, 1, 1);
+ place(4, 7, mDeleteButton, 1, 1);
+ place(6, 7, mQuitButton, 1, 1);
+ place(7, 7, mConnectButton, 1, 1);
// Make sure the list has enough height
getLayout().setRowHeight(0, 80);