spell check on unix should be ctrl-shift-k like seamonkey.

Thanks to Stephen Walker for the patch
This commit is contained in:
scott%scott-macgregor.org 2004-02-05 05:10:58 +00:00
Родитель f732c98959
Коммит 3aed2bb5f1
1 изменённых файлов: 6 добавлений и 1 удалений

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

@ -184,7 +184,12 @@
<key keycode="&findPrevCmd.key2;" command="cmd_findPrev" modifiers="shift"/>
<!-- Options Menu -->
<key id="key_checkspelling" key="&checkSpellingCmd.key;" command="cmd_spelling" modifiers="accel"/>
#ifdef XP_UNIX
<key id="key_checkspelling" key="&checkSpellingCmd.key;" command="cmd_spelling" modifiers="accel, shift"/>
#else
<key id="key_checkspelling" key="&checkSpellingCmd.key;" command="cmd_spelling" modifiers="accel"/>
#endif
#ifdef XP_WIN
<key keycode="&checkSpellingCmd.key2;" command="cmd_spelling"/>
#endif