Kaynağa Gözat

ProcessKey switch statement: (#144)

Added Key.DeleteChar to Key.ControlD switch condition.
Greg Amidon 6 yıl önce
ebeveyn
işleme
d247e9b70c
1 değiştirilmiş dosya ile 1 ekleme ve 1 silme
  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;