Make Insert key work again in triplet list

This commit is contained in:
G.K.MacGregor
2021-04-11 13:03:07 +01:00
parent be1cb458b5
commit f49a07e421
3 changed files with 5 additions and 2 deletions

View File

@@ -349,6 +349,9 @@ void TeletextWidget::keyPressEvent(QKeyEvent *event)
case Qt::Key_Delete:
m_teletextDocument->undoStack()->push(new DeleteKeyCommand(m_teletextDocument));
break;
case Qt::Key_Insert:
emit insertKeyPressed();
break;
case Qt::Key_Up:
m_teletextDocument->cursorUp();