浏览代码

ProcessKey switch statement: (#144)

Added Key.DeleteChar to Key.ControlD switch condition.
Greg Amidon 6 年之前
父节点
当前提交
d247e9b70c
共有 1 个文件被更改,包括 1 次插入1 次删除
  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;