Browse Source

Merge pull request #9534 from Gillibald/fixes/inputEventArgsVisibility

Make KeyEventArgs and TextInputEventArgs public again
pull/9737/head
Max Katz 3 years ago
committed by GitHub
parent
commit
cea6c2f2b7
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      src/Avalonia.Base/Input/KeyEventArgs.cs
  2. 2
      src/Avalonia.Base/Input/TextInputEventArgs.cs

2
src/Avalonia.Base/Input/KeyEventArgs.cs

@ -5,7 +5,7 @@ namespace Avalonia.Input
{
public class KeyEventArgs : RoutedEventArgs
{
internal KeyEventArgs()
public KeyEventArgs()
{
}

2
src/Avalonia.Base/Input/TextInputEventArgs.cs

@ -4,7 +4,7 @@ namespace Avalonia.Input
{
public class TextInputEventArgs : RoutedEventArgs
{
internal TextInputEventArgs()
public TextInputEventArgs()
{
}

Loading…
Cancel
Save