Fix delete key not working as shortcut in Document view

preferencesAboutTextFull
Craig Watson 9 years ago
parent 4e1a02c4f7
commit 2c68edd548
  1. 2
      src/document/UBDocumentController.cpp

@ -361,6 +361,8 @@ void UBDocumentController::setupViews()
#ifdef Q_OS_OSX
mMainWindow->actionDelete->setShortcut(QKeySequence(Qt::Key_Backspace));
#else
mMainWindow->actionDelete->setShortcut(QKeySequence(Qt::Key_Delete));
#endif
connect(mMainWindow->actionDelete, SIGNAL(triggered()), this, SLOT(deleteSelectedItem()));

Loading…
Cancel
Save