Compare commits

..

2 Commits

Author SHA1 Message Date
Marc Brooks 76dc3f226e
Merge f9a16eede7 into 317218a682 2025-10-04 12:05:17 +02:00
Marc Brooks f9a16eede7
Update ui/src/components/popovers/PasteModal.tsx
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
2025-10-04 00:54:17 -05:00
2 changed files with 3 additions and 3 deletions

View File

@ -137,7 +137,7 @@ func NewKeyboardMacroTokenMessage(token uuid.UUID) *Message {
data, _ := token.MarshalBinary()
return &Message{
t: TypeKeyboardMacroTokenState,
t: TypeKeyboardMacroState,
d: data,
}
}

View File

@ -67,7 +67,7 @@ var keyboardReportDesc = []byte{
/* 1 bit of padding for the Power LED (ignored) */
0x95, 0x01, /* REPORT_COUNT (1) */
0x75, 0x03, /* REPORT_SIZE (3) */
0x75, 0x03, /* REPORT_SIZE (1) */
0x91, 0x03, /* OUTPUT (Cnst,Var,Abs) */
/* LED report 1 bit for Shift */
@ -80,7 +80,7 @@ var keyboardReportDesc = []byte{
/* 1 bit of padding for the rest of the byte */
0x95, 0x01, /* REPORT_COUNT (1) */
0x75, 0x03, /* REPORT_SIZE (3) */
0x75, 0x03, /* REPORT_SIZE (1) */
0x91, 0x03, /* OUTPUT (Cnst,Var,Abs) */
0xc0, /* END_COLLECTION */
}