mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2026-06-16 12:48:42 -04:00
For Q65, Ctrl+Click on a call in ActiveStations leaves m_freqNominal unchanged.
This commit is contained in:
@@ -106,7 +106,8 @@ void ActiveStations::on_textEdit_clicked()
|
||||
cursor.movePosition(QTextCursor::EndOfBlock, QTextCursor::KeepAnchor);
|
||||
text = cursor.selectedText();
|
||||
if(text!="") {
|
||||
int nline=text.left(2).toInt()-1;
|
||||
int nline=text.left(2).toInt();
|
||||
if(QGuiApplication::keyboardModifiers().testFlag(Qt::ControlModifier)) nline=-nline;
|
||||
emit callSandP(nline);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user