fix(tracker/gioui): respawn window if VSTI accidentally closes it

This commit is contained in:
5684185+vsariola@users.noreply.github.com 2023-10-08 16:27:17 +03:00
parent 61ebd89da0
commit f5eeabe5f3

View File

@ -5,6 +5,8 @@ package gioui
const CAN_QUIT = false
func (t *Tracker) Quit(forced bool) bool {
t.sendQuit()
if forced {
t.sendQuit()
}
return forced
}