diff options
author | Paul Gilbert | 2015-07-09 20:21:35 -0400 |
---|---|---|
committer | Paul Gilbert | 2015-07-09 20:21:35 -0400 |
commit | d5edb841f0d67b2a80ccfb830ad407d4a0465f58 (patch) | |
tree | 0ea4824d4ab4bb8c9d3640d6c0ef9a76280979c1 /engines/sherlock | |
parent | 6fe1b6757adb7c75ffe5c0ba4fcd442a279d03f4 (diff) | |
download | scummvm-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')
-rw-r--r-- | engines/sherlock/tattoo/tattoo_user_interface.cpp | 3 |
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() { |