diff options
author | Kali Kaneko (leap communications) <kali@leap.se> | 2019-07-01 19:32:32 +0200 |
---|---|---|
committer | Ruben Pollan <meskio@sindominio.net> | 2019-08-05 11:45:57 -0400 |
commit | f4ae27200a577fd14e993751b533389850049fb9 (patch) | |
tree | fc2120cb42cb391d9c7f96439f47e9887e767e30 | |
parent | 5d65d89e01105bc1b37995175cd9336ea2c737e0 (diff) |
[bug] fix path for the snap icon
-rw-r--r-- | pkg/systray/notificator.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/systray/notificator.go b/pkg/systray/notificator.go index 5d0308e..4179759 100644 --- a/pkg/systray/notificator.go +++ b/pkg/systray/notificator.go @@ -137,7 +137,7 @@ func getIconPath() string { snapPath := os.Getenv("SNAP") if snapPath != "" { - return snapPath + "/snap/gui/icon.svg" + return snapPath + "/snap/meta/gui/icon.svg" } wd, _ := os.Getwd() |