diff options
author | Andrei Karas <akaras@inbox.ru> | 2011-09-23 17:41:51 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2011-09-23 17:41:51 +0300 |
commit | dcc723947399caae79a181d4b2cd430fc6dde585 (patch) | |
tree | f5505eb4d5f5fd0c13152e87fd0b46d4dbbdb70f /src | |
parent | 9fe83ca23b72a2f13024b0839656d5b00b28b419 (diff) | |
download | plus-dcc723947399caae79a181d4b2cd430fc6dde585.tar.gz plus-dcc723947399caae79a181d4b2cd430fc6dde585.tar.bz2 plus-dcc723947399caae79a181d4b2cd430fc6dde585.tar.xz plus-dcc723947399caae79a181d4b2cd430fc6dde585.zip |
Fix default size for social and status windows.
Diffstat (limited to 'src')
-rw-r--r-- | src/gui/socialwindow.cpp | 2 | ||||
-rw-r--r-- | src/gui/statuswindow.cpp | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/gui/socialwindow.cpp b/src/gui/socialwindow.cpp index a8d15f36c..ab19e501b 100644 --- a/src/gui/socialwindow.cpp +++ b/src/gui/socialwindow.cpp @@ -1133,7 +1133,7 @@ SocialWindow::SocialWindow() : setMinWidth(120); setMinHeight(55); - setDefaultSize(590, 200, 150, 120); + setDefaultSize(590, 200, 180, 300); setupWindow->registerWindowForReset(this); mCreateButton = new Button(_("Create"), "create", this); diff --git a/src/gui/statuswindow.cpp b/src/gui/statuswindow.cpp index 0cad8732a..203338708 100644 --- a/src/gui/statuswindow.cpp +++ b/src/gui/statuswindow.cpp @@ -133,8 +133,8 @@ StatusWindow::StatusWindow(): setCloseButton(true); setSaveVisible(true); setStickyButtonLock(true); - setDefaultSize((windowContainer->getWidth() - 365) / 2, - (windowContainer->getHeight() - 255) / 2, 365, 275); + setDefaultSize((windowContainer->getWidth() - 480) / 2, + (windowContainer->getHeight() - 500) / 2, 480, 500); // ---------------------- // Status Part |