Skip to content

Commit

Permalink
Fix draw.KeyDown on macos (#495)
Browse files Browse the repository at this point in the history
Co-authored-by: Demian Garcia <[email protected]> (all the hard parts)
Co-authored-by: Robert Kroeger <[email protected]> (just merging)
  • Loading branch information
sfyatee authored Nov 5, 2023
1 parent f9bba99 commit 8eb4bb3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion text.go
Original file line number Diff line number Diff line change
Expand Up @@ -808,7 +808,7 @@ func (t *Text) Type(r rune) {
}
}
return
case draw.KeyDown:
case draw.KeyDown, 0xF800:
if t.what == Tag {
Tagdown()
return
Expand Down

0 comments on commit 8eb4bb3

Please sign in to comment.