Bug 505141 Use of Shift+Ins to open link in new tab conflicts with alternate paste key r=IanN
This commit is contained in:
Родитель
f173f22cfe
Коммит
4368bcbeb4
|
@ -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>
|
||||
|
|
Загрузка…
Ссылка в новой задаче