Treat Backspace as Left (same as AW).

Signed-off-by: Andrea Odetti <mariofutire@gmail.com>
This commit is contained in:
Andrea Odetti 2020-06-15 10:53:42 +01:00
parent 059820847a
commit 42a3294791

View file

@ -88,6 +88,7 @@ void Video::keyPressEvent(QKeyEvent *event)
case Qt::Key_Enter: case Qt::Key_Enter:
ch = 0x0d; ch = 0x0d;
break; break;
case Qt::Key_Backspace: // same as AppleWin
case Qt::Key_Left: case Qt::Key_Left:
ch = 0x08; ch = 0x08;
break; break;