Skip to content

Commit

Permalink
Merge pull request #1756 from googlefonts/clipboard-menu-items-issue-…
Browse files Browse the repository at this point in the history
…1755

Fix action identifiers for cut/copy/paste
  • Loading branch information
justvanrossum authored Oct 25, 2024
2 parents e9ee014 + 51348bd commit 5f1c59c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/fontra/views/editor/editor.js
Original file line number Diff line number Diff line change
Expand Up @@ -1503,15 +1503,15 @@ export class EditorController {
this.basicContextMenuItems.push(
{
title: "Cut",
actionIdentifier: "action.clipboard.cut",
actionIdentifier: "action.cut",
},
{
title: "Copy",
actionIdentifier: "action.clipboard.copy",
actionIdentifier: "action.copy",
},
{
title: "Paste",
actionIdentifier: "action.clipboard.paste",
actionIdentifier: "action.paste",
}
);
}
Expand Down

0 comments on commit 5f1c59c

Please sign in to comment.