Browse Source

ProcessKey switch statement: (#144)

Added Key.DeleteChar to Key.ControlD switch condition.
Greg Amidon 6 years ago
parent
commit
d247e9b70c
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Terminal.Gui/Views/TextView.cs

+ 1 - 1
Terminal.Gui/Views/TextView.cs

@@ -849,7 +849,7 @@ namespace Terminal.Gui {
 				} else
 					PositionCursor ();
 				break;
-
+			case Key.DeleteChar:
 			case Key.ControlD: // Delete
 				if (isReadOnly)
 					break;