Stop displaying general activity in the directed text area (for now)

This commit is contained in:
Jordan Sherer 2018-08-02 02:31:08 -04:00
parent b7b7167d85
commit 172e1df31d

View File

@ -8788,6 +8788,9 @@ void MainWindow::processRxActivity() {
bool shouldDisplay = abs(freq - currentFreq()) <= 10;
// TODO: jsherer - develop a better way to determine if we can display this band activity...
#if 0
if(isRecentOffset(freq) || isAllCallIncluded(d.text)){
m_rxRecentCache.insert(freq, new QDateTime(QDateTime::currentDateTimeUtc()), 25);
shouldDisplay = true;
@ -8797,6 +8800,7 @@ void MainWindow::processRxActivity() {
m_rxDirectedCache.insert(freq, new QDateTime(QDateTime::currentDateTimeUtc()), 25);
shouldDisplay = true;
}
#endif
if(!shouldDisplay){
continue;