From 0abac16cbc3307465271bc454f874c2e14ccc589 Mon Sep 17 00:00:00 2001 From: xypwn <54681180+xypwn@users.noreply.github.com> Date: Fri, 29 Sep 2023 16:05:11 +0200 Subject: [PATCH] Since label for undo/redo shortcuts --- shortcut.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/shortcut.go b/shortcut.go index 0ab075c438..ebe33ea0e3 100644 --- a/shortcut.go +++ b/shortcut.go @@ -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) @@ -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)