diff --git a/mainwindow.cpp b/mainwindow.cpp index 1bf5940..7b696c9 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -11448,7 +11448,10 @@ void MainWindow::displayBandActivity() { } // if our previous item should not be displayed and we have a MSG ID, then don't display it either. - if(i > 0 && !items[i-1].shouldDisplay && item.text.contains(" MSG ID ")){ + if( + (i == 0 || (i > 0 && !items[i-1].shouldDisplay)) && + (item.text.contains(" MSG ID ")) + ){ shouldDisplay = false; } }