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

For some reason button 8 & 9 support is missing.
pull/9772/head
Mitchell Hashimoto 2025-11-30 12:37:33 -08:00 committed by GitHub
commit 750bb1fe33
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 0 deletions

View File

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