mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 628660 - Gray area when navigating with the form assistant [r=mfinkle,stechz]
This commit is contained in:
parent
f809fe4925
commit
111787aaee
@ -1041,7 +1041,12 @@ var Browser = {
|
||||
view.setScale(scale);
|
||||
view._contentView.scrollTo(scrollX, scrollY);
|
||||
|
||||
browser.scale = scale;
|
||||
// If the scale level doesn't change ensure the view is well refreshed
|
||||
// otherwise setting the scale level of the browser will do it
|
||||
if (scale == browser.scale)
|
||||
view._updateCacheViewport();
|
||||
else
|
||||
browser.scale = scale;
|
||||
},
|
||||
|
||||
zoomToPoint: function zoomToPoint(cX, cY, aRect) {
|
||||
|
Loading…
Reference in New Issue
Block a user