From ed0cc67ba5a4e3904f55c862660671a433239180 Mon Sep 17 00:00:00 2001 From: Mohamed Date: Thu, 2 Oct 2025 13:31:21 -0400 Subject: [PATCH] Added shortcut for restore template button --- src/wxUI/dialogs/templateDialogs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wxUI/dialogs/templateDialogs.py b/src/wxUI/dialogs/templateDialogs.py index 9efa96aa..af1c708b 100644 --- a/src/wxUI/dialogs/templateDialogs.py +++ b/src/wxUI/dialogs/templateDialogs.py @@ -26,7 +26,7 @@ class EditTemplateDialog(wx.Dialog): sizer_3.AddButton(self.button_SAVE) self.button_CANCEL = wx.Button(self, wx.ID_CANCEL) sizer_3.AddButton(self.button_CANCEL) - self.button_RESTORE = wx.Button(self, wx.ID_ANY, _("Restore template")) + self.button_RESTORE = wx.Button(self, wx.ID_ANY, _("&Restore template")) self.button_RESTORE.Bind(wx.EVT_BUTTON, self.on_restore) sizer_3.AddButton(self.button_CANCEL) sizer_3.Realize()