我刚刚安装了最新的谷歌浏览器,并试图用 DialogBox 测试 GWT 2.3 代码;出于某种原因,选项 likesetGlassEnabled(true);
以一种奇怪的方式工作:(
如果 chrome 的滚动窗格(y 位置为 0),则玻璃被正确绘制
但如果 chrome 的滚动窗格(y 位置 > 0),则玻璃保持在 0 位置,因此 chrome 的其余底部不会被玻璃覆盖:(
我要向我的构造函数展示第一个玻璃选项
...
public MyDIalog() {
this.setGlassEnabled(true);
this.setAnimationEnabled(true);
this.setModal(true);
this.setPreviewingAllNativeEvents(true);
...
我不太确定是什么导致了这个错误或什么,因为代码在 IE 和 FF 中运行良好:S
所以我猜在镀铬中,玻璃位置总是静态的或其他东西,它的位置总是
x,y{0,0} w,h{firstInitedWidth,firstInitedHeight}
所以我的问题是 chrome 有没有四处走走?
谢谢