]> source.dussan.org Git - vaadin-framework.git/commitdiff
Merge commit '34e6c60a5a746c0306c3a84ae8d6c21dfd84d878' into 7.1
authorLeif Åstrand <leif@vaadin.com>
Mon, 3 Jun 2013 13:00:34 +0000 (16:00 +0300)
committerLeif Åstrand <leif@vaadin.com>
Mon, 3 Jun 2013 13:01:52 +0000 (16:01 +0300)
#11448 is fixed in a different way for 7.1 because the tooltip event
handling has been slightly refactored.

Change-Id: I50db48ffdce22cdf6598daafcb022fc43ed11cf4

1  2 
client/src/com/vaadin/client/ui/window/WindowConnector.java

index a394a33882ea2458db52c0706599fbf5b11392d1,beaf549dcfbe29e6602c9543b8e57164f63a6d8f..4b839384a23dfe78de602a8e277e72af4970e260
@@@ -313,14 -392,4 +392,13 @@@ public class WindowConnector extends Ab
      public void setWindowOrderAndPosition() {
          getWidget().setWindowOrderAndPosition();
      }
-     public TooltipInfo getTooltipInfo(com.google.gwt.dom.client.Element element) {
 +
 +    @Override
-          * Override method to make AbstractComponentConnector.hasTooltip()
-          * return true so there's a top level handler that takes care of hiding
-          * tooltips whenever the mouse is moved somewhere else.
++    public boolean hasTooltip() {
 +        /*
-         return super.getTooltipInfo(element);
++         * Tooltip event handler always needed on the window widget to make sure
++         * tooltips are properly hidden. (#11448)
 +         */
++        return true;
 +    }
  }