diff options
author | Thierry Crozat | 2018-07-24 00:22:45 +0100 |
---|---|---|
committer | Thierry Crozat | 2018-07-24 00:27:11 +0100 |
commit | 7b0402fbb0dc9fa5759b7f059ada915d72677e4d (patch) | |
tree | 8bca3cfd40561165ea70aad0196079994ba38ed2 | |
parent | bd98c6f045dab0c87ebdc08a542ef8486b740bea (diff) | |
download | scummvm-rg350-7b0402fbb0dc9fa5759b7f059ada915d72677e4d.tar.gz scummvm-rg350-7b0402fbb0dc9fa5759b7f059ada915d72677e4d.tar.bz2 scummvm-rg350-7b0402fbb0dc9fa5759b7f059ada915d72677e4d.zip |
GUI: Fix scrollbar bottom arrow being displayed as up arrow after mouse up
-rw-r--r-- | gui/ThemeEngine.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gui/ThemeEngine.cpp b/gui/ThemeEngine.cpp index d38a03fb82..867960cad0 100644 --- a/gui/ThemeEngine.cpp +++ b/gui/ThemeEngine.cpp @@ -839,7 +839,7 @@ void ThemeEngine::drawDD(DrawData type, const Common::Rect &r, uint32 dynamic, b return; if (kDrawDataDefaults[type].parent != kDDNone && kDrawDataDefaults[type].parent != type) - drawDD(kDrawDataDefaults[type].parent, r); + drawDD(kDrawDataDefaults[type].parent, r, dynamic); Common::Rect area = r; area.clip(_screen.w, _screen.h); |