From 785e651dd64b5edc690fcae3b4f24168ccc1cff3 Mon Sep 17 00:00:00 2001 From: Drew Weymouth Date: Sat, 3 Feb 2024 11:58:31 -0800 Subject: [PATCH] fix typo --- ui/os/shortcuts_default.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/os/shortcuts_default.go b/ui/os/shortcuts_default.go index 75865f6..30a29d1 100644 --- a/ui/os/shortcuts_default.go +++ b/ui/os/shortcuts_default.go @@ -13,7 +13,7 @@ const ( ) var ( - QuitShortcut = &desktop.CustomShortcut{Modifier: KeyModifierControl, KeyName: fyne.KeyQ} + QuitShortcut = &desktop.CustomShortcut{Modifier: fyne.KeyModifierControl, KeyName: fyne.KeyQ} BackShortcuts = []desktop.CustomShortcut{ {Modifier: fyne.KeyModifierAlt, KeyName: fyne.KeyLeft}, }