Show
Ignore:
Timestamp:
06/27/08 08:19:40 (7 months ago)
Author:
marc.englund@…
Message:

There was a small yellow strip on the bottom of the tooltip, it it had an error message, but no description. Fixed.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/src/com/itmill/toolkit/terminal/gwt/client/Tooltip.java

    r4902 r4959  
    5050        if (info.getTitle() != null && !"".equals(info.getTitle())) { 
    5151            DOM.setInnerHTML(description, info.getTitle()); 
     52            DOM.setStyleAttribute(description, "display", ""); 
    5253            hasContent = true; 
    5354        } else { 
    5455            DOM.setInnerHTML(description, ""); 
     56            DOM.setStyleAttribute(description, "display", "none"); 
    5557        } 
    5658        if (hasContent) {