mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-23 19:45:29 +00:00
Made KeyChar property setter internal instead of private. Useful for reusing KeyPressEventArgs structures (instead of allocating a new one on each and every character event).
This commit is contained in:
parent
f4fd7113f4
commit
072de099ae
|
@ -52,7 +52,7 @@ namespace OpenTK
|
|||
public char KeyChar
|
||||
{
|
||||
get { return key_char; }
|
||||
private set { key_char = value; }
|
||||
internal set { key_char = value; }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue