From d9a77eb8ac5d507665cbf8b20f5d8187148ebfd1 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Sat, 14 Dec 2013 16:59:21 +0300 Subject: Improve a bit separate images drawing. --- src/gui/widgets/button.cpp | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'src/gui/widgets/button.cpp') diff --git a/src/gui/widgets/button.cpp b/src/gui/widgets/button.cpp index e1f95c334..91c531f6b 100644 --- a/src/gui/widgets/button.cpp +++ b/src/gui/widgets/button.cpp @@ -499,12 +499,17 @@ void Button::draw(gcn::Graphics *graphics) else { g2->drawImageRect(0, 0, width, height, skin->getBorder()); + if (mImages) { if (isPressed()) - g2->drawImage(mImages[mode], imageX + 1, imageY + 1); + { + DRAW_IMAGE(g2, mImages[mode], imageX + 1, imageY + 1); + } else - g2->drawImage(mImages[mode], imageX, imageY); + { + DRAW_IMAGE(g2, mImages[mode], imageX, imageY); + } } } -- cgit v1.2.3-60-g2f50