Fix several issues with shortcut keys.

Do not drop  through shortcut key handling so  that spurious responses
are avoided.

The keyPressEvent handlers must call the super class implementation if
the event os not handled.

Correct a typo in the shortcut help display.

git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@4361 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
This commit is contained in:
Bill Somerville
2014-09-25 11:35:50 +00:00
parent e64037c61e
commit fbc744e066
3 changed files with 33 additions and 17 deletions
+1 -1
View File
@@ -208,7 +208,7 @@ void WideGraph::keyPressEvent(QKeyEvent *e)
emit f11f12(n);
break;
default:
e->ignore();
QDialog::keyPressEvent (e);
}
}