gtk: re-enable closing on no windows

This commit is contained in:
Mitchell Hashimoto
2023-02-24 17:51:10 -08:00
parent c80270ff50
commit cbebbd78b3

View File

@ -126,7 +126,7 @@ pub const App = struct {
// Tick the terminal app
const should_quit = try self.core_app.tick(self);
if (false and should_quit) return;
if (should_quit) return;
}
}