From 7629cdd084c25e919078ace01b105aa95070ffcf Mon Sep 17 00:00:00 2001 From: talksik Date: Sat, 7 Feb 2026 08:39:56 -0800 Subject: [PATCH] chore: remove unseen dot Do not need it due to color change for entire particle row. --- src/particlelistmodel.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/particlelistmodel.cpp b/src/particlelistmodel.cpp index b408d71..9cae615 100644 --- a/src/particlelistmodel.cpp +++ b/src/particlelistmodel.cpp @@ -78,10 +78,6 @@ QVariant ParticleListModel::data(const QModelIndex &index, int role) const summary = particle.type; } QString display = QString("[%1] - %2").arg(emailPrefix, summary); - if (!particle.seen) - { - display += " •"; - } return display; } else if (role == Qt::ForegroundRole)