fix missing import

This commit is contained in:
Drew Weymouth
2023-03-22 17:36:32 -07:00
parent e17498d267
commit 6a4eaf9606
2 changed files with 5 additions and 1 deletions
+1
View File
@@ -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
+4 -1
View File
@@ -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