From f26c96d51b4f8add3ccd61fc48d6226dade437dd Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Tue, 11 Feb 2025 16:52:58 -0800 Subject: [PATCH] apprt/glfw: return false for unimplemented actions --- src/apprt/glfw.zig | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/apprt/glfw.zig b/src/apprt/glfw.zig index bcb7ee5ba..cb034cd86 100644 --- a/src/apprt/glfw.zig +++ b/src/apprt/glfw.zig @@ -239,7 +239,10 @@ pub const App = struct { .pwd, .config_change, .toggle_maximize, - => log.info("unimplemented action={}", .{action}), + => { + log.info("unimplemented action={}", .{action}); + return false; + }, } return true;