diff options
Diffstat (limited to 'src/gui/window.cpp')
-rw-r--r-- | src/gui/window.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/gui/window.cpp b/src/gui/window.cpp index 5c01daf3..d40ebca6 100644 --- a/src/gui/window.cpp +++ b/src/gui/window.cpp @@ -255,12 +255,13 @@ void Window::setLocationRelativeTo(ImageRect::ImagePosition position, void Window::setMinWidth(unsigned int width) { - mMinWinWidth = width; + mMinWinWidth = width > mSkin->getMinWidth() ? width : mSkin->getMinWidth(); } void Window::setMinHeight(unsigned int height) { - mMinWinHeight = height; + mMinWinHeight = height > mSkin->getMinHeight() ? + height : mSkin->getMinHeight(); } void Window::setMaxWidth(unsigned int width) |