diff options
author | Andrei Karas <akaras@inbox.ru> | 2011-04-21 06:09:30 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2011-04-21 06:09:30 +0300 |
commit | 005d429599088b523e4f62326824c7fb51ba9c63 (patch) | |
tree | dccce15cf132bae28c85be897d5f7cc33299ea17 /src/gui/widgets/button.cpp | |
parent | 8037d33c9f429d4c0322da383cdda46776c3c14e (diff) | |
download | plus-005d429599088b523e4f62326824c7fb51ba9c63.tar.gz plus-005d429599088b523e4f62326824c7fb51ba9c63.tar.bz2 plus-005d429599088b523e4f62326824c7fb51ba9c63.tar.xz plus-005d429599088b523e4f62326824c7fb51ba9c63.zip |
Fix draw issue in SDL after vertex precalculation.
Diffstat (limited to 'src/gui/widgets/button.cpp')
-rw-r--r-- | src/gui/widgets/button.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/gui/widgets/button.cpp b/src/gui/widgets/button.cpp index 91d297846..c0f174b2c 100644 --- a/src/gui/widgets/button.cpp +++ b/src/gui/widgets/button.cpp @@ -210,6 +210,10 @@ void Button::draw(gcn::Graphics *graphics) recalc = true; mMode = mode; } + else if (static_cast<Graphics*>(graphics)->getRedraw()) + { + recalc = true; + } } if (recalc) |