From cbebbd78b378301b2ec8e62e1aedec4698aa38b5 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Fri, 24 Feb 2023 17:51:10 -0800 Subject: [PATCH] gtk: re-enable closing on no windows --- src/apprt/gtk.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/apprt/gtk.zig b/src/apprt/gtk.zig index 0f04972c0..ebd0b597b 100644 --- a/src/apprt/gtk.zig +++ b/src/apprt/gtk.zig @@ -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; } }