core: encode mouse buttons 8 & 9 (back/forward) (#9761)

For some reason button 8 & 9 support is missing.
This commit is contained in:
Mitchell Hashimoto
2025-11-30 12:37:33 -08:00
committed by GitHub

View File

@@ -3464,6 +3464,8 @@ fn mouseReport(
.five => 65,
.six => 66,
.seven => 67,
.eight => 128,
.nine => 129,
else => return, // unsupported
};
}