diff options
author | Ira Rice <irarice@gmail.com> | 2009-01-20 18:24:03 -0700 |
---|---|---|
committer | Ira Rice <irarice@gmail.com> | 2009-01-20 18:24:03 -0700 |
commit | b0ff8cc281d7e7f8f3c2666d6bbe6424fec74f9c (patch) | |
tree | 65123f2d756f8838a7812ae9935e2095e5080f2d /src/gui/itempopup.cpp | |
parent | c6d75d9aad1775e60cc63516e844cf54623a3974 (diff) | |
download | mana-b0ff8cc281d7e7f8f3c2666d6bbe6424fec74f9c.tar.gz mana-b0ff8cc281d7e7f8f3c2666d6bbe6424fec74f9c.tar.bz2 mana-b0ff8cc281d7e7f8f3c2666d6bbe6424fec74f9c.tar.xz mana-b0ff8cc281d7e7f8f3c2666d6bbe6424fec74f9c.zip |
Fixed y positioning so that popups don't run off of the screen (old
behavior overprotected the bottom of the window, but didn't protect the
top at all. Forgot to fix for that earlier)
Signed-off-by: Ira Rice <irarice@gmail.com>
Diffstat (limited to 'src/gui/itempopup.cpp')
-rw-r--r-- | src/gui/itempopup.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/itempopup.cpp b/src/gui/itempopup.cpp index 81e4607b..f9916a89 100644 --- a/src/gui/itempopup.cpp +++ b/src/gui/itempopup.cpp @@ -122,8 +122,8 @@ void ItemPopup::view(int x, int y) { if (windowContainer->getWidth() < (x + getWidth() + 5)) x = windowContainer->getWidth() - getWidth(); - if (windowContainer->getHeight() < (y + getHeight() + 5)) - y = windowContainer->getHeight() - getHeight(); + if ((y - getHeight() - 5) < 0) + y = 0; else y = y - getHeight() - 5; setPosition(x, y); |