Disable CTRL+M in WideGraph and FastGraph.

git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@7796 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
This commit is contained in:
Joe Taylor
2017-07-06 19:34:20 +00:00
parent 8b7fa91b41
commit ebdb0dfab0
2 changed files with 5 additions and 8 deletions
-5
View File
@@ -223,11 +223,6 @@ void WideGraph::keyPressEvent(QKeyEvent *e) //F1
if(e->modifiers() & Qt::ControlModifier) n+=100;
emit f11f12(n);
break;
case Qt::Key_M:
if(e->modifiers() & Qt::ControlModifier) {
ui->controls_widget->setVisible(!ui->controls_widget->isVisible());
}
break;
default:
QDialog::keyPressEvent (e);
}