summaryrefslogtreecommitdiff
path: root/src/gui/statuspopup.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/statuspopup.cpp')
-rw-r--r--src/gui/statuspopup.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gui/statuspopup.cpp b/src/gui/statuspopup.cpp
index 9ac2cfad0..c4216013a 100644
--- a/src/gui/statuspopup.cpp
+++ b/src/gui/statuspopup.cpp
@@ -167,9 +167,9 @@ void StatusPopup::view(int x, int y)
int posX = std::max(0, x - getWidth() / 2);
int posY = y + distance;
- if (posX + getWidth() > graphics->getWidth())
- posX = graphics->getWidth() - getWidth();
- if (posY + getHeight() > graphics->getHeight())
+ if (posX + getWidth() > graphics->mWidth)
+ posX = graphics->mWidth - getWidth();
+ if (posY + getHeight() > graphics->mHeight)
posY = y - getHeight() - distance;
update();