bug 181586 - Ctrl+0 selects tenth tab instead of reverting to 100% zoom

This commit is contained in:
dean_tessman%hotmail.com 2002-12-07 03:33:54 +00:00
Родитель e81d7b47ff
Коммит 23b8aa3b0e
1 изменённых файлов: 1 добавлений и 3 удалений

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

@ -498,9 +498,7 @@ function ctrlNumberTabSelection(event)
return;
var index = event.charCode - 49;
if (index == -1)
index = 9;
if (index < 0 || index > 9)
if (index < 0 || index > 8)
return;
if (index >= gBrowser.mTabContainer.childNodes.length)