summaryrefslogtreecommitdiff
path: root/src/gui/widgets/button.cpp
diff options
context:
space:
mode:
authorYohann Ferreira <yohann_dot_ferreira_at_orange_dot_efer>2012-02-03 10:53:19 +0100
committerYohann Ferreira <yohann_dot_ferreira_at_orange_dot_efer>2012-02-03 14:38:20 +0100
commit86c4819bee1bcd990b6be20f36dcb26938acac8e (patch)
treecb43808529b6bd0e7d540803630e03f33ee3c26d /src/gui/widgets/button.cpp
parent19bc88f34713968864922f8f3f2342d10c4f4dbd (diff)
downloadmana-86c4819bee1bcd990b6be20f36dcb26938acac8e.tar.gz
mana-86c4819bee1bcd990b6be20f36dcb26938acac8e.tar.bz2
mana-86c4819bee1bcd990b6be20f36dcb26938acac8e.tar.xz
mana-86c4819bee1bcd990b6be20f36dcb26938acac8e.zip
Changed the setup button at login stage to use the icon.
I also made the button not readjust its size when deleted to avoid a crash. Reviewed-by: Erik Schilling
Diffstat (limited to 'src/gui/widgets/button.cpp')
-rw-r--r--src/gui/widgets/button.cpp8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/gui/widgets/button.cpp b/src/gui/widgets/button.cpp
index 00e781e0..4a31fa63 100644
--- a/src/gui/widgets/button.cpp
+++ b/src/gui/widgets/button.cpp
@@ -118,7 +118,7 @@ bool Button::setButtonIcon(const std::string& iconFile)
return (mButtonIcon);
}
-void Button::removeButtonIcon()
+void Button::removeButtonIcon(bool adjustButtonSize)
{
if (!mButtonIcon)
return;
@@ -132,7 +132,8 @@ void Button::removeButtonIcon()
delete[] mButtonIcon;
mButtonIcon = 0;
- adjustSize();
+ if (adjustButtonSize)
+ adjustSize();
}
void Button::init()
@@ -190,7 +191,8 @@ Button::~Button()
delete mTextPopup;
mTextPopup = 0;
}
- removeButtonIcon();
+ // Don' try to readjust the size when it's about to be deleted.
+ removeButtonIcon(false);
}
void Button::updateAlpha()