Fixes a minor gotcha when selecting View -> Text Size -> Other, then cancel. Checkmark was left on Other instead of being set back on the menuitem it was on before. bug=52971, r=mozbot, a=brendan.

This commit is contained in:
disttsc%bart.nl 2006-09-14 05:54:01 +00:00
Родитель f516e86f4d
Коммит 5f5da58f1f
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -1212,9 +1212,9 @@ function BrowserEditBookmarks()
zoomAnchor = zoomOther;
zoomSteps = 0;
browserSetTextZoom(zoomOther);
updateTextZoomMenu();
updateTextZoomOtherMenu();
}
updateTextZoomMenu();
}
function browserSetTextZoom(aZoomFactor) {
@ -2139,4 +2139,4 @@ function URLBarBlurHandler(aEvent)
var URLBar = aEvent.target;
URLBar.setSelectionRange(0, 0);
}
}
}