Skip to content

Commit

Permalink
Use dedicated accesskey for editing log points (firefox-devtools#8196) (
Browse files Browse the repository at this point in the history
  • Loading branch information
Archaeopteryx authored and darkwing committed Apr 23, 2019
1 parent b2f653a commit a0543b6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/Editor/menus/breakpoints.js
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ export const editLogPointItem = (
) => ({
id: "node-menu-edit-log-point",
label: L10N.getStr("editor.editLogPoint"),
accesskey: L10N.getStr("editor.addLogPoint.accesskey"),
accesskey: L10N.getStr("editor.editLogPoint.accesskey"),
disabled: false,
click: () => breakpointActions.openConditionalPanel(location, true),
accelerator: L10N.getStr("toggleCondPanel.logPoint.key")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ export default function showContextMenu(props: Props) {
const editLogPointItem = {
id: "node-menu-edit-log-point",
label: L10N.getStr("editor.editLogPoint"),
accesskey: L10N.getStr("editor.addLogPoint.accesskey"),
accesskey: L10N.getStr("editor.editLogPoint.accesskey"),
disabled: false,
click: () => openConditionalPanel(selectedLocation, true),
accelerator: L10N.getStr("toggleCondPanel.logPoint.key")
Expand Down

0 comments on commit a0543b6

Please sign in to comment.