diff options
Diffstat (limited to 'src/gui/popup.cpp')
-rw-r--r-- | src/gui/popup.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/popup.cpp b/src/gui/popup.cpp index 8e0c8fb9..17d299a5 100644 --- a/src/gui/popup.cpp +++ b/src/gui/popup.cpp @@ -172,12 +172,12 @@ void Popup::setLocationRelativeTo(gcn::Widget *widget) void Popup::setMinWidth(unsigned int width) { - mMinWidth = width; + mMinWidth = width > mSkin->getMinWidth() ? width : mSkin->getMinWidth(); } void Popup::setMinHeight(unsigned int height) { - mMinHeight = height; + mMinHeight = height > mSkin->getMinHeight() ? height : mSkin->getMinHeight(); } void Popup::setMaxWidth(unsigned int width) |