Merge pull request #2424 from ghostty-org/push-xnvwslrvoktn

core: support mouse button 6/7 for mouse reports
This commit is contained in:
Mitchell Hashimoto
2024-10-09 11:30:19 -07:00
committed by GitHub

View File

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