core: support mouse button 6/7 for mouse reports

Fixes #2423

This corresponds to horizontal scroll on macOS and likely other mice.
This commit is contained in:
Mitchell Hashimoto
2024-10-09 11:22:22 -07:00
parent fe9afe73f0
commit e90dec04be

View File

@ -2341,6 +2341,8 @@ fn mouseReport(
.right => 2,
.four => 64,
.five => 65,
.six => 66,
.seven => 67,
else => return, // unsupported
};
}