Skip to content

Commit

Permalink
Since label for undo/redo shortcuts
Browse files Browse the repository at this point in the history
  • Loading branch information
xypwn authored Sep 29, 2023
1 parent 18829f7 commit 0abac16
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions shortcut.go
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,8 @@ func (se *ShortcutSelectAll) ShortcutName() string {
}

// ShortcutUndo describes a shortcut undo action.
//
// Since: 2.5
type ShortcutUndo struct{}

var _ KeyboardShortcut = (*ShortcutUndo)(nil)
Expand All @@ -170,6 +172,8 @@ func (se *ShortcutUndo) ShortcutName() string {
}

// ShortcutRedo describes a shortcut redo action.
//
// Since: 2.5
type ShortcutRedo struct{}

var _ KeyboardShortcut = (*ShortcutRedo)(nil)
Expand Down

0 comments on commit 0abac16

Please sign in to comment.