Bug 505141 Use of Shift+Ins to open link in new tab conflicts with alternate paste key r=IanN

This commit is contained in:
Neil Rashbrook 2009-08-06 10:51:25 +01:00
Родитель f173f22cfe
Коммит 4368bcbeb4
5 изменённых файлов: 10 добавлений и 10 удалений

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

@ -14,7 +14,7 @@
<key id="key_stop2" keycode="VK_ESCAPE" oncommand="BrowserStop();"/>
<key id="key_stop" key="." oncommand="BrowserStop();" modifiers="accel"/>
<key id="goHome" keycode="VK_HOME" command="Browser:Home" modifiers="meta"/>
<key id="key_newTabWithTargetFg" keycode="VK_INSERT" modifiers="shift" command="cmd_newTabWithTarget"/>
<key id="key_newTabWithTargetFg" keycode="VK_INSERT" modifiers="alt" command="cmd_newTabWithTarget"/>
<!-- Support Accel+Shift for Add Bookmark -->
<key id="addBookmarkKb" key="&addCurPageCmd.commandkey;" command="Browser:AddBookmark" modifiers="accel,shift"/>

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

@ -22,7 +22,7 @@
<key id="goHome" keycode="VK_HOME" command="Browser:Home" modifiers="alt"/>
<key id="key_fullScreen" keycode="VK_F11" command="View:FullScreen"/>
<key id="key_newTabWithTargetBg" keycode="VK_INSERT" command="cmd_newTabWithTarget"/>
<key id="key_newTabWithTargetFg" keycode="VK_INSERT" modifiers="shift" command="cmd_newTabWithTarget"/>
<key id="key_newTabWithTargetFg" keycode="VK_INSERT" modifiers="alt" command="cmd_newTabWithTarget"/>
</keyset>
<menuitem id="menuitem_fullScreen" hidden="false"/>

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

@ -20,7 +20,7 @@
<key id="key_fullScreen" keycode="VK_F11" command="View:FullScreen"/>
<key id="key_newTabWithTargetBg" keycode="VK_INSERT" command="cmd_newTabWithTarget"/>
<key id="key_newTabWithTargetFg" keycode="VK_INSERT" modifiers="shift" command="cmd_newTabWithTarget"/>
<key id="key_newTabWithTargetFg" keycode="VK_INSERT" modifiers="alt" command="cmd_newTabWithTarget"/>
<!-- Support Accel+Shift for Add Bookmark -->
<key id="addBookmarkKb" key="&addCurPageCmd.commandkey;" command="Browser:AddBookmark" modifiers="accel,shift"/>

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

@ -106,7 +106,7 @@
if (ceParams) {
var href = ceParams.href;
if (isKeyCommand) {
openNewTabWith(href, event.target.ownerDocument, event.shiftKey);
openNewTabWith(href, event.target.ownerDocument, event.altKey);
event.stopPropagation();
}
else {

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

@ -418,15 +418,15 @@
</tr>
<tr>
<td>Open Link in a New Foreground Tab (when link is focused)</td>
<td>Insert (or Shift+Insert) *</td>
<td></td>
<td>Insert (or Shift+Insert) *</td>
<td>Insert (or Alt+Insert) *</td>
<td>(Alt+Insert) *</td>
<td>Insert (or Alt+Insert) *</td>
</tr>
<tr>
<td>Open Link in a New Background Tab (when link is focused)</td>
<td>Shift+Insert (or Insert) *</td>
<td></td>
<td>Shift+Insert (or Insert) *</td>
<td>Alt+Insert (or Insert) *</td>
<td>Alt+Insert</td>
<td>Alt+Insert (or Insert) *</td>
</tr>
</tbody>
</table>