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:
blakeross%telocity.com
2006-09-14 05:55:26 +00:00
parent 5cd9c2b4f4
commit e8e212cd1e

View File

@@ -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;