small change to key bindings reviewd allready didnt check it in yet. bug=20146

This commit is contained in:
mjudge%netscape.com 2000-02-13 01:07:02 +00:00
parent 129d114d6a
commit 392737f5e2
2 changed files with 6 additions and 10 deletions

View File

@ -15,10 +15,6 @@
command="cmd_charPrevious"/>
<handler type="keypress" id="key_right" keycode="VK_RIGHT" alt="false" shift="false" control="false"
command="cmd_charNext"/>
<handler type="keypress" id="key_left" keycode="VK_UP" alt="false" shift="false" control="false"
command="cmd_charPrevious"/>
<handler type="keypress" id="key_right" keycode="VK_DOWN" alt="false" shift="false" control="false"
command="cmd_charNext"/>
<handler type="keypress" id="key_pageup" keycode="VK_PAGE_UP" alt="false" shift="false" control="false"
command="cmd_scrollPageUp"/>
<handler type="keypress" id="key_pagedown" keycode="VK_PAGE_DOWN" alt="false" shift="false" control="false"
@ -32,10 +28,6 @@
command="cmd_selectCharPrevious"/>
<handler type="keypress" id="key_rightshift" keycode="VK_RIGHT" shift="true" alt="false" control="false"
command="cmd_selectCharNext"/>
<handler type="keypress" id="key_leftshift" keycode="VK_UP" shift="true" alt="false" control="false"
command="cmd_selectCharPrevious"/>
<handler type="keypress" id="key_rightshift" keycode="VK_DOWN" shift="true" alt="false" control="false"
command="cmd_selectCharNext"/>
<handler type="keypress" id="key_leftcontrol" keycode="VK_LEFT" control="true" alt="false" shift="false"
command="cmd_wordPrevious"/>
<handler type="keypress" id="key_rightcontrol" keycode="VK_RIGHT" control="true" alt="false" shift="false"

View File

@ -6,10 +6,14 @@
<binding name="inputFields" extends="resource:/chrome/htmlBindings.xml#inputFieldsBase">
<handlers>
<handler type="keypress" id="key_up" keycode="VK_UP" alt="false"
<handler type="keypress" id="key_up" keycode="VK_UP" alt="false" shift="false" control="false"
command="cmd_charPrevious"/>
<handler type="keypress" id="key_down" keycode="VK_DOWN" alt="false"
<handler type="keypress" id="key_down" keycode="VK_DOWN" alt="false" shift="false" control="false"
command="cmd_charNext"/>
<handler type="keypress" id="key_leftshift" keycode="VK_UP" shift="true" alt="false" control="false"
command="cmd_selectCharPrevious"/>
<handler type="keypress" id="key_rightshift" keycode="VK_DOWN" shift="true" alt="false" control="false"
command="cmd_selectCharNext"/>
</handlers>
</binding>