Fix Search bar command key on Mac... XP_UNIX is defined for unices AND MacOS X!

This commit is contained in:
ben%bengoodger.com 2003-12-03 00:18:41 +00:00
Родитель 80462e9cb1
Коммит 2730e6908a
1 изменённых файлов: 4 добавлений и 0 удалений

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

@ -126,7 +126,11 @@
<key id="focusURLBar" key="&openCmd.commandkey;" command="Browser:OpenLocation"
modifiers="accel"/>
#ifdef XP_UNIX
#ifndef XP_MACOSX
<key id="focusSearchBar" key="&searchFocusUnix.commandkey;" oncommand="focusSearchBar();" modifiers="accel"/>
#else
<key id="focusSearchBar" key="&searchFocus.commandkey;" oncommand="focusSearchBar();" modifiers="accel"/>
#endif
#else
<key id="focusSearchBar" key="&searchFocus.commandkey;" oncommand="focusSearchBar();" modifiers="accel"/>
#endif