]> source.dussan.org Git - vaadin-framework.git/commitdiff
#2061 related fix - Avoid flickering in firefox when resizing window
authorArtur Signell <artur.signell@itmill.com>
Fri, 31 Oct 2008 05:54:12 +0000 (05:54 +0000)
committerArtur Signell <artur.signell@itmill.com>
Fri, 31 Oct 2008 05:54:12 +0000 (05:54 +0000)
svn changeset:5776/svn branch:trunk

src/com/itmill/toolkit/terminal/gwt/client/ui/IView.java

index 891d4f93097e9a801b8d6fcccf851cfd5df33fea..96c8fafa01c64f3db7b6b6e9d3c4a11c3c9146f8 100644 (file)
@@ -349,18 +349,11 @@ public class IView extends SimplePanel implements Container,
             IView.this.width = Window.getClientWidth();
             IView.this.height = Window.getClientHeight();
 
-            // temporary set overflow hidden, not to let scrollbars disturb
-            // layout functions
-            final String overflow = DOM.getStyleAttribute(getElement(),
-                    "overflow");
-            DOM.setStyleAttribute(getElement(), "overflow", "hidden");
             ApplicationConnection.getConsole().log(
                     "Running layout functions due window resize");
 
             connection.runDescendentsLayout(this);
 
-            DOM.setStyleAttribute(getElement(), "overflow", overflow);
-
         }
 
     }