Merge branch 'master' into zig-0.15.0

This commit is contained in:
CJ van den Berg 2025-08-22 13:12:37 +02:00
commit 55a862eac0
Signed by: neurocyte
GPG key ID: 8EB1E1BB660E3FB9
47 changed files with 1610 additions and 2504 deletions

View file

@ -323,6 +323,9 @@ pub fn process_renderer_event(self: *Self, msg: []const u8) Error!void {
})),
};
},
.mouse_leave => {
if (self.dispatch_event) |f| f(self.handler_ctx, try self.fmtmsg(.{"mouse_leave"}));
},
.focus_in => {
if (self.dispatch_event) |f| f(self.handler_ctx, try self.fmtmsg(.{"focus_in"}));
},