Fix exit from systray (#4337)

This commit is contained in:
DingDongSoLong4
2023-12-02 17:44:20 +02:00
committed by GitHub
parent d4ef182871
commit ccb1b7c3c4
3 changed files with 15 additions and 10 deletions

View File

@@ -23,7 +23,7 @@ type FaviconProvider interface {
// Start starts the desktop icon process. It blocks until the process exits.
// MUST be run on the main goroutine or will have no effect on macOS
func Start(exit chan<- int, faviconProvider FaviconProvider) {
func Start(exit chan int, faviconProvider FaviconProvider) {
if IsDesktop() {
hideConsole()