Fix #660: add cover art, silent property to Windows track change notification

This commit is contained in:
Drew Weymouth
2025-11-08 08:16:48 -08:00
parent 0ff57513c2
commit f48b2ba210
3 changed files with 103 additions and 2 deletions
+10
View File
@@ -0,0 +1,10 @@
//go:build !windows
package windows
import "fyne.io/fyne/v2"
func SendNotification(n *fyne.Notification, iconFilePath string) {
fyne.LogError("windows.SendNotification should not be invoked on non-Windows platform", nil)
fyne.CurrentApp().SendNotification(n)
}