From b12648950fc06b7ddafb69c92252d7c62757457c Mon Sep 17 00:00:00 2001 From: BDisp Date: Fri, 22 May 2020 00:01:41 +0100 Subject: [PATCH] Fix a bug KeyEvent declared twice. due to rebase problems. --- Terminal.Gui/Core.cs | 5 ----- 1 file changed, 5 deletions(-) diff --git a/Terminal.Gui/Core.cs b/Terminal.Gui/Core.cs index 87f04f77f..7168eba1e 100644 --- a/Terminal.Gui/Core.cs +++ b/Terminal.Gui/Core.cs @@ -1070,11 +1070,6 @@ namespace Terminal.Gui { public KeyEvent KeyEvent { get; set; } } - public class KeyEventEventArgs : EventArgs { - public KeyEventEventArgs(KeyEvent ke) => KeyEvent = ke; - public KeyEvent KeyEvent { get; set; } - } - /// /// Invoked when a character key is pressed and occurs after the key up event. ///