diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-05-25 20:43:53 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-05-25 21:33:18 +0300 |
commit | bea613d8ba11a64ccf36a01735f2839894ca9476 (patch) | |
tree | 8d5de8bf983f13aec50b3f1234db09b88dff26d3 /src/gui/widgets/sliderlist.cpp | |
parent | 80b0caa35e4b84b745daef7e4102b428539cdee5 (diff) | |
download | plus-bea613d8ba11a64ccf36a01735f2839894ca9476.tar.gz plus-bea613d8ba11a64ccf36a01735f2839894ca9476.tar.bz2 plus-bea613d8ba11a64ccf36a01735f2839894ca9476.tar.xz plus-bea613d8ba11a64ccf36a01735f2839894ca9476.zip |
Fix some issues in safe OpenGL renderer after last changes.
Diffstat (limited to 'src/gui/widgets/sliderlist.cpp')
-rw-r--r-- | src/gui/widgets/sliderlist.cpp | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/gui/widgets/sliderlist.cpp b/src/gui/widgets/sliderlist.cpp index 22fcb8956..3dc5df633 100644 --- a/src/gui/widgets/sliderlist.cpp +++ b/src/gui/widgets/sliderlist.cpp @@ -120,6 +120,19 @@ void SliderList::draw(Graphics *graphics) BLOCK_END("SliderList::draw") } +void SliderList::safeDraw(Graphics *graphics) +{ + BLOCK_START("SliderList::draw") + const int width = mDimension.width; + if (mOldWidth != width) + { + resize(); + mOldWidth = width; + } + Container::draw(graphics); + BLOCK_END("SliderList::draw") +} + void SliderList::updateLabel() { if (!mListModel || mSelectedIndex < 0 |