Removed some older methods of command que.

merge-requests/2/head
Elliott Liggett 2021-02-28 00:54:37 -08:00
rodzic 8c244e75d3
commit c74d5d448d
1 zmienionych plików z 2 dodań i 4 usunięć

Wyświetl plik

@ -2015,8 +2015,7 @@ void wfmain::handlePlotDoubleClick(QMouseEvent *me)
//y = plot->yAxis->pixelToCoord(me->pos().y());
x = plot->xAxis->pixelToCoord(me->pos().x());
emit setFrequency(x);
cmdOut = cmdGetFreq;
delayedCommand->start();
issueDelayedCommand(cmdGetFreq);
showStatusBarText(QString("Going to %1 MHz").arg(x));
}
}
@ -2032,8 +2031,7 @@ void wfmain::handleWFDoubleClick(QMouseEvent *me)
{
x = plot->xAxis->pixelToCoord(me->pos().x());
emit setFrequency(x);
cmdOut = cmdGetFreq;
delayedCommand->start();
issueDelayedCommand(cmdGetFreq);
showStatusBarText(QString("Going to %1 MHz").arg(x));
}
}