apprt/glfw: return false for unimplemented actions

This commit is contained in:
Mitchell Hashimoto
2025-02-11 16:52:58 -08:00
parent 927cb4e622
commit f26c96d51b

View File

@ -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;