diff options
author | Jordi Vilalta Prat | 2008-12-26 12:15:51 +0000 |
---|---|---|
committer | Jordi Vilalta Prat | 2008-12-26 12:15:51 +0000 |
commit | d18d2d72a8ce4688042fecb53481c8cc67d284f6 (patch) | |
tree | 535d33cd992cc4f51786cd891704da6ed65a5910 /gui | |
parent | 1e60714ff7b16b5a3018a3eae0a6bd89d2692dcf (diff) | |
download | scummvm-rg350-d18d2d72a8ce4688042fecb53481c8cc67d284f6.tar.gz scummvm-rg350-d18d2d72a8ce4688042fecb53481c8cc67d284f6.tar.bz2 scummvm-rg350-d18d2d72a8ce4688042fecb53481c8cc67d284f6.zip |
Fix for the SliderWidget glitch when showing very small values (and potentially for other small widgets)
svn-id: r35557
Diffstat (limited to 'gui')
-rw-r--r-- | gui/ThemeEngine.cpp | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/gui/ThemeEngine.cpp b/gui/ThemeEngine.cpp index d483e06e82..671fe55f95 100644 --- a/gui/ThemeEngine.cpp +++ b/gui/ThemeEngine.cpp @@ -706,14 +706,7 @@ void ThemeEngine::drawSlider(const Common::Rect &r, int width, WidgetStateInfo s drawWidgetBackground(r, 0, kWidgetBackgroundSlider, kStateEnabled); - // TODO/FIXME: This seems to prevent displaying of - // slider widgets in low ranges. When disabling it - // the slider is shown, but it creates gfx glitches - // in modern theme. Modern theme uses "roundedsq" - // as drawing function, thus the real bug should be - // in VectorRenderer::drawRoundedSquare. - if (width > r.width() * 5 / 100) - queueDD(dd, r2); + queueDD(dd, r2); } void ThemeEngine::drawScrollbar(const Common::Rect &r, int sliderY, int sliderHeight, ScrollbarState scrollState, WidgetStateInfo state) { |