1 parent ca05160 commit d17fb45Copy full SHA for d17fb45
1 file changed
Terminal.Gui/Views/TextField.cs
@@ -160,14 +160,15 @@ public override bool ProcessKey (KeyEvent kb)
160
{
161
switch (kb.Key) {
162
case Key.Delete:
163
+#if false
164
case Key.DeleteChar:
165
if (text.Length == 0 || text.Length == point)
166
return true;
167
168
SetText (text [0, point] + text [point + 1, null]);
169
Adjust ();
170
break;
-
171
+#endif
172
case Key.Backspace:
173
if (point == 0)
174
0 commit comments