Fix 54963: mousewheel text sizing not bounded, and lower upper bound (to 2000%). patch by Jonas Sicking (sicking@bigfoot.com). r=bryner,blake a=ben
git-svn-id: svn://10.0.0.236/trunk@210630 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
@@ -969,7 +969,7 @@ function BrowserPrint()
|
||||
|
||||
function setTextZoomOther() {
|
||||
// open dialog and ask for new value
|
||||
var o = { retvals: {zoom: zoomOther}, zoomMin: 1, zoomMax: 5000 };
|
||||
var o = { retvals: {zoom: zoomOther}, zoomMin: 1, zoomMax: 2000 };
|
||||
window.openDialog( "chrome://navigator/content/askViewZoom.xul", "", "chrome,modal,titlebar", o);
|
||||
if (o.retvals.zoomOK) {
|
||||
zoomOther = o.retvals.zoom;
|
||||
|
||||
Reference in New Issue
Block a user