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

pull/9761/head
CJ van den Berg 2025-11-30 17:53:21 +01:00
parent 34fd1dd0f6
commit 7be28e7215
No known key found for this signature in database
GPG Key ID: 8EB1E1BB660E3FB9
1 changed files with 2 additions and 0 deletions

View File

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