fix(notifications): fix missing task bar icon making notif not work
Fixes #4183 and #4205
This commit is contained in:
parent
94d67717c8
commit
8be841e0ac
|
@ -203,14 +203,14 @@ StatusWindow {
|
|||
icon.source: {
|
||||
if (production) {
|
||||
if (Qt.platform.os == "osx")
|
||||
return "imports/shared/img/status-logo-round-rect.svg"
|
||||
return "imports/assets/images/status-logo-round-rect.svg"
|
||||
else
|
||||
return "imports/shared/img/status-logo-circle.svg"
|
||||
return "imports/assets/images/status-logo-circle.svg"
|
||||
} else {
|
||||
if (Qt.platform.os == "osx")
|
||||
return "imports/shared/img/status-logo-dev-round-rect.svg"
|
||||
return "imports/assets/images/status-logo-dev-round-rect.svg"
|
||||
else
|
||||
return "imports/shared/img/status-logo-dev-circle.svg"
|
||||
return "imports/assets/images/status-logo-dev-circle.svg"
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue