Hi,
i've got an optical issue with chrome.
First things first, i'm using today's nightly build "v8.3p_2012-11-22/Pro Deployment" and HTML DOCTYPE 5.
I've got a simple auto centered and mondial window over a vLayout. If i'm altering the zoom of the browser,
the window starts to stutter and the layout iterates through the disabling and enabling of it's vertical and horizontal scrollbars.
Here the code example, in which this behaviour occurs
Regards Marcus
i've got an optical issue with chrome.
First things first, i'm using today's nightly build "v8.3p_2012-11-22/Pro Deployment" and HTML DOCTYPE 5.
I've got a simple auto centered and mondial window over a vLayout. If i'm altering the zoom of the browser,
the window starts to stutter and the layout iterates through the disabling and enabling of it's vertical and horizontal scrollbars.
Here the code example, in which this behaviour occurs
Code:
isc.VLayout.create({ height: "100%", width: "100%", overflow: "auto", members: [ isc.Canvas.create({ height: "100%", width: "100%", contents: "Test" }) ] }); isc.Window.create({ title: "stutter test", width: 400, height: 400, mondial: true, autoCenter: true, items: [ isc.Canvas.create({ height: "100%", width: "100%", contents: "Test" }) ] });
Comment