only command+numbers should switch tabs (control + number key switches tab instead of activating accesskey). Bug 265711, patch by Asaf Romano <bugs.mano@mail-central.com>, r=mconnor.

This commit is contained in:
smontagu%smontagu.org 2005-01-16 18:25:41 +00:00
Родитель f71679409d
Коммит 6a863a40fc
1 изменённых файлов: 3 добавлений и 1 удалений

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

@ -1045,10 +1045,12 @@ function ctrlNumberTabSelection(event)
#ifdef XP_MACOSX
if (!event.metaKey)
#elifdef XP_UNIX
#else
#ifdef XP_UNIX
if (!event.altKey)
#else
if (!event.ctrlKey)
#endif
#endif
return;