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
Родитель ac97d37458
Коммит 0486f857d3
1 изменённых файлов: 3 добавлений и 1 удалений

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

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