Browse Source

ProcessKey switch statement: (#144)

Added Key.DeleteChar to Key.ControlD switch condition.
Greg Amidon 6 năm trước cách đây
mục cha
commit
d247e9b70c
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  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;