[Scummvm-cvs-logs] scummvm master -> d5edb841f0d67b2a80ccfb830ad407d4a0465f58

dreammaster dreammaster at scummvm.org
Fri Jul 10 02:22:43 CEST 2015


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
d5edb841f0 SHERLOCK: RT: Only show tooltips when no action is active


Commit: d5edb841f0d67b2a80ccfb830ad407d4a0465f58
    https://github.com/scummvm/scummvm/commit/d5edb841f0d67b2a80ccfb830ad407d4a0465f58
Author: Paul Gilbert (dreammaster at scummvm.org)
Date: 2015-07-09T20:21:35-04:00

Commit Message:
SHERLOCK: RT: Only show tooltips when no action is active

Changed paths:
    engines/sherlock/tattoo/tattoo_user_interface.cpp



diff --git a/engines/sherlock/tattoo/tattoo_user_interface.cpp b/engines/sherlock/tattoo/tattoo_user_interface.cpp
index 9296ff0..e6eebd8 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() {






More information about the Scummvm-git-logs mailing list