mirror of
https://github.com/Ryujinx/Opentk.git
synced 2025-06-22 07:27:49 +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
|
public char KeyChar
|
||||||
{
|
{
|
||||||
get { return key_char; }
|
get { return key_char; }
|
||||||
private set { key_char = value; }
|
internal set { key_char = value; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue