Skip to content

Commit

Permalink
feat: Map Key.KP_Enter to VirtualKey.Enter
Browse files Browse the repository at this point in the history
  • Loading branch information
lukeblevins committed Jul 7, 2021
1 parent 948f151 commit b6207be
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,7 @@ private VirtualKey ConvertKey(Gdk.Key key)
Gdk.Key.Tab => VirtualKey.Tab,
Gdk.Key.Clear => VirtualKey.Clear,
Gdk.Key.Return => VirtualKey.Enter,
Gdk.Key.KP_Enter => VirtualKey.Enter,
// Gdk.Key.Shift => VirtualKey.Shift,
// Gdk.Key.Control => VirtualKey.Control,
Gdk.Key.Menu => VirtualKey.Menu,
Expand Down

0 comments on commit b6207be

Please sign in to comment.