diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-04-02 17:05:22 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-04-02 17:05:22 +0300 |
commit | 3279c64d25124dbe759f7ba4fffe5554c3dd9e1e (patch) | |
tree | caa87efca43cf2d959565f472ba039c2f2c48bb0 /src/gui/widgets/checkbox.cpp | |
parent | ef0f7af63a5e1bd73fb34c601f996e7aadf848c0 (diff) | |
download | mv-3279c64d25124dbe759f7ba4fffe5554c3dd9e1e.tar.gz mv-3279c64d25124dbe759f7ba4fffe5554c3dd9e1e.tar.bz2 mv-3279c64d25124dbe759f7ba4fffe5554c3dd9e1e.tar.xz mv-3279c64d25124dbe759f7ba4fffe5554c3dd9e1e.zip |
Improve isVisible usage.
Diffstat (limited to 'src/gui/widgets/checkbox.cpp')
-rw-r--r-- | src/gui/widgets/checkbox.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/widgets/checkbox.cpp b/src/gui/widgets/checkbox.cpp index 06dcecab0..765ff13ec 100644 --- a/src/gui/widgets/checkbox.cpp +++ b/src/gui/widgets/checkbox.cpp @@ -189,7 +189,7 @@ void CheckBox::drawBox(Graphics *const graphics) const ImageRect &rect = mSkin->getBorder(); int index = 0; - if (mEnabled && isVisible()) + if (mEnabled && mVisible) { if (mSelected) { |