Skip to content

Commit

Permalink
Merge pull request opentk#314 from leezer3/leezer3-a
Browse files Browse the repository at this point in the history
Fix: Insert key not working on Linux, due to typo in X11KeyMap.cs
  • Loading branch information
Frassle committed Nov 15, 2015
2 parents 2683b92 + df690c6 commit bf74b7e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/OpenTK/Platform/X11/X11KeyMap.cs
Original file line number Diff line number Diff line change
Expand Up @@ -509,7 +509,7 @@ static Key TranslateXKey(XKey key)
case XKey.Scroll_Lock:
return Key.Pause;
case XKey.Insert:
return Key.PrintScreen;
return Key.Insert;
case XKey.Print:
return Key.PrintScreen;
case XKey.Sys_Req:
Expand Down

0 comments on commit bf74b7e

Please sign in to comment.