Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    scrollbar flicker in layout

    Consider this example:

    Code:
    public class Test extends HLayout implements EntryPoint {
    
        public void onModuleLoad() {
    
            setWidth100();
            setHeight100();
            draw();
        }
    }
    If i run this in a browser, and then drag to shrink the browser window, a horizontal resize bar appears on each resize event for a couple of milliseconds. Haven't thought about that before.

    Your "Demo Application" showcase example seems to me to be initialized in the same way, but that one does not flicker when i resize it.. What is the problem here?

    #2
    You can set overflow:hidden on the body tag of your page - if you look in the browser console, you may see a warning to this effect.

    Comment

    Working...
    X