summaryrefslogtreecommitdiff
path: root/src/dialogues/InformationMessage.cpp
diff options
context:
space:
mode:
authorjacob1 <jfu614@gmail.com>2012-09-21 02:28:32 (GMT)
committer Simon Robertshaw <simon@hardwired.org.uk>2012-09-25 19:10:23 (GMT)
commitde7218da8dfcac8d66280811ea755b75da474301 (patch)
treebc51da4499a110819e4ab6263ad29ac50e647e42 /src/dialogues/InformationMessage.cpp
parent5de2a4e479788977dc1f5f84430bd644bcd49151 (diff)
downloadpowder-de7218da8dfcac8d66280811ea755b75da474301.zip
powder-de7218da8dfcac8d66280811ea755b75da474301.tar.gz
Fix black border around dialogs being off (I think I got all of them)
Diffstat (limited to 'src/dialogues/InformationMessage.cpp')
-rw-r--r--src/dialogues/InformationMessage.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dialogues/InformationMessage.cpp b/src/dialogues/InformationMessage.cpp
index 6cdd48e..b015b06 100644
--- a/src/dialogues/InformationMessage.cpp
+++ b/src/dialogues/InformationMessage.cpp
@@ -52,7 +52,7 @@ void InformationMessage::OnDraw()
{
Graphics * g = ui::Engine::Ref().g;
- g->clearrect(Position.X-2, Position.Y-2, Size.X+4, Size.Y+4);
+ g->clearrect(Position.X-2, Position.Y-2, Size.X+3, Size.Y+3);
g->drawrect(Position.X, Position.Y, Size.X, Size.Y, 200, 200, 200, 255);
}