From 6a4eaf96062f14d2170da8bf4cfe8d62ed9b5489 Mon Sep 17 00:00:00 2001 From: Drew Weymouth Date: Wed, 22 Mar 2023 17:36:32 -0700 Subject: [PATCH] fix missing import --- CHANGELOG.md | 1 + ui/os/keymodifiers_default.go | 5 ++++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 515711b..b639249 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,7 @@ ### Added - [#39](https://github.com/dweymouth/supersonic/issues/39) Add caching of artist images +- [#94](https://github.com/dweymouth/supersonic/issues/94) Add Cmd+[ Cmd+] back/forward shortcuts for Mac (alongside existing Cmd+Left/Right) ### Fixed - [#90](https://github.com/dweymouth/supersonic/issues/90) Wrong covers get loaded for albums if server has different IDs for album and cover art diff --git a/ui/os/keymodifiers_default.go b/ui/os/keymodifiers_default.go index c50a935..a272789 100644 --- a/ui/os/keymodifiers_default.go +++ b/ui/os/keymodifiers_default.go @@ -2,7 +2,10 @@ package os -import "fyne.io/fyne/v2" +import ( + "fyne.io/fyne/v2" + "fyne.io/fyne/v2/driver/desktop" +) const ( ControlModifier = fyne.KeyModifierControl