apprt/glfw: return false for unimplemented actions

pull/5644/head
Mitchell Hashimoto 2025-02-11 16:52:58 -08:00
parent 927cb4e622
commit f26c96d51b
No known key found for this signature in database
GPG Key ID: 523D5DC389D273BC
1 changed files with 4 additions and 1 deletions

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;