aboutsummaryrefslogtreecommitdiff
path: root/engines/sherlock/tattoo/tattoo_user_interface.cpp
diff options
context:
space:
mode:
authorPaul Gilbert2015-07-09 20:21:35 -0400
committerPaul Gilbert2015-07-09 20:21:35 -0400
commitd5edb841f0d67b2a80ccfb830ad407d4a0465f58 (patch)
tree0ea4824d4ab4bb8c9d3640d6c0ef9a76280979c1 /engines/sherlock/tattoo/tattoo_user_interface.cpp
parent6fe1b6757adb7c75ffe5c0ba4fcd442a279d03f4 (diff)
downloadscummvm-rg350-d5edb841f0d67b2a80ccfb830ad407d4a0465f58.tar.gz
scummvm-rg350-d5edb841f0d67b2a80ccfb830ad407d4a0465f58.tar.bz2
scummvm-rg350-d5edb841f0d67b2a80ccfb830ad407d4a0465f58.zip
SHERLOCK: RT: Only show tooltips when no action is active
Diffstat (limited to 'engines/sherlock/tattoo/tattoo_user_interface.cpp')
-rw-r--r--engines/sherlock/tattoo/tattoo_user_interface.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/engines/sherlock/tattoo/tattoo_user_interface.cpp b/engines/sherlock/tattoo/tattoo_user_interface.cpp
index 9296ff0e8a..e6eebd8cf5 100644
--- a/engines/sherlock/tattoo/tattoo_user_interface.cpp
+++ b/engines/sherlock/tattoo/tattoo_user_interface.cpp
@@ -306,7 +306,8 @@ void TattooUserInterface::drawInterface(int bufferNum) {
screen.blockMove();
// Handle drawing the text tooltip if necessary
- _tooltipWidget.draw();
+ if (_menuMode == STD_MODE)
+ _tooltipWidget.draw();
}
void TattooUserInterface::doBgAnimRestoreUI() {