summaryrefslogtreecommitdiff
path: root/src/gui/widgets/window.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/widgets/window.cpp')
-rw-r--r--src/gui/widgets/window.cpp12
1 files changed, 7 insertions, 5 deletions
diff --git a/src/gui/widgets/window.cpp b/src/gui/widgets/window.cpp
index e08908c7a..2a417c633 100644
--- a/src/gui/widgets/window.cpp
+++ b/src/gui/widgets/window.cpp
@@ -187,12 +187,14 @@ void Window::draw(gcn::Graphics *graphics)
static_cast<gcn::Graphics::Alignment>(mCaptionAlign));
}
+ int closePadding = getOption("closePadding");
+
// Draw Close Button
if (mCloseButton && mSkin->getCloseImage())
{
const Image *const button = mSkin->getCloseImage();
- const int x = getWidth() - button->getWidth() - getPadding();
- g->drawImage(button, x, getPadding());
+ const int x = getWidth() - button->getWidth() - closePadding;
+ g->drawImage(button, x, closePadding);
}
// Draw Sticky Button
@@ -201,11 +203,11 @@ void Window::draw(gcn::Graphics *graphics)
const Image *const button = mSkin->getStickyImage(mSticky);
if (button)
{
- int x = getWidth() - button->getWidth() - getPadding();
+ int x = getWidth() - button->getWidth() - closePadding;
if (mCloseButton && mSkin->getCloseImage())
- x -= mSkin->getCloseImage()->getWidth() + getPadding();
+ x -= mSkin->getCloseImage()->getWidth() + closePadding;
- g->drawImage(button, x, getPadding());
+ g->drawImage(button, x, closePadding);
}
}