Make freqs in mainwindow properly follow mouse clicks on waterfall.

git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@2764 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
This commit is contained in:
Joe Taylor
2012-11-23 16:44:40 +00:00
parent 7a43d28e68
commit e541f7fd4a
3 changed files with 34 additions and 28 deletions
+1 -1
View File
@@ -9,7 +9,7 @@ DisplayText::DisplayText(QWidget *parent) :
void DisplayText::mouseDoubleClickEvent(QMouseEvent *e)
{
bool ctrl = (e->modifiers() & 0x4000000);
bool ctrl = (e->modifiers() & Qt::ControlModifier);
emit(selectCallsign(ctrl));
QTextBrowser::mouseDoubleClickEvent(e);
}