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

This commit is contained in:
2023-10-08 16:27:17 +03:00
parent 61ebd89da0
commit f5eeabe5f3
+3 -1
View File
@@ -5,6 +5,8 @@ package gioui
const CAN_QUIT = false const CAN_QUIT = false
func (t *Tracker) Quit(forced bool) bool { func (t *Tracker) Quit(forced bool) bool {
t.sendQuit() if forced {
t.sendQuit()
}
return forced return forced
} }