src/js/widgets/tooltipWidget.js
branchpopcorn-port
changeset 579 179b32df9caa
parent 550 ae0f2ec05ed7
child 646 2b8b2a94ee92
--- a/src/js/widgets/tooltipWidget.js	Wed Jan 04 11:38:24 2012 +0100
+++ b/src/js/widgets/tooltipWidget.js	Wed Jan 04 13:06:14 2012 +0100
@@ -24,9 +24,9 @@
 
 IriSP.TooltipWidget.prototype.show = function(text, color, x, y) {
 
-  if (this._displayedText == text)
+  if (this._displayedText == text && this._shown)
     return;
-  
+
   this.selector.find(".tipcolor").css("background-color", color);
   this._displayedText = text;
 	this.selector.find(".tiptext").text(text);