]> source.dussan.org Git - vaadin-framework.git/commitdiff
Fix for #2566 - Sample header buttons are missing in IE6
authorArtur Signell <artur.signell@itmill.com>
Tue, 10 Feb 2009 08:12:55 +0000 (08:12 +0000)
committerArtur Signell <artur.signell@itmill.com>
Tue, 10 Feb 2009 08:12:55 +0000 (08:12 +0000)
svn changeset:6775/svn branch:trunk

src/com/itmill/toolkit/demo/sampler/gwt/client/ui/IGoogleAnalytics.java

index 6ac4e32727dd25f8fe7d59ab051a99b931f2f8a1..8b16ef25c7435dbf7b1e4fe0d82028879e65e657 100644 (file)
@@ -14,6 +14,7 @@ public class IGoogleAnalytics extends Widget implements Paintable {
         if (BrowserInfo.get().isIE6()) {
             getElement().getStyle().setProperty("overflow", "hidden");
             getElement().getStyle().setProperty("height", "0");
+            getElement().getStyle().setProperty("width", "0");
         }
     }