diff options
author | Andrei Karas <akaras@inbox.ru> | 2011-09-01 04:32:32 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2011-09-01 04:32:32 +0300 |
commit | 5ea9050ac91402262b84749557be61506c4af5d2 (patch) | |
tree | 8c894e2d03d6dcdda7b1ceee1b171891d6335718 | |
parent | 8c68f106f93214d8d645104aa9dba43c6ab082a8 (diff) | |
download | plus-5ea9050ac91402262b84749557be61506c4af5d2.tar.gz plus-5ea9050ac91402262b84749557be61506c4af5d2.tar.bz2 plus-5ea9050ac91402262b84749557be61506c4af5d2.tar.xz plus-5ea9050ac91402262b84749557be61506c4af5d2.zip |
Fix windows max x and y position.
was to one pixel less then screen size.
-rw-r--r-- | src/gui/widgets/window.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/gui/widgets/window.cpp b/src/gui/widgets/window.cpp index 9cb7cb620..7508d4e4b 100644 --- a/src/gui/widgets/window.cpp +++ b/src/gui/widgets/window.cpp @@ -709,10 +709,10 @@ void Window::loadWindowState() int width = getWidth(); int height = getHeight(); - if (getX() + width >= viewport->getWidth()) - width = viewport->getWidth() - getX() - 1; - if (getY() + height >= viewport->getHeight()) - height = viewport->getHeight() - getY() - 1; + if (getX() + width > viewport->getWidth()) + width = viewport->getWidth() - getX(); + if (getY() + height > viewport->getHeight()) + height = viewport->getHeight() - getY(); if (width < 0) width = 0; if (height < 0) |