feat: shorten particle id

This commit is contained in:
talksik
2026-02-06 14:40:08 -08:00
parent 8597bf7c31
commit fefba20571
+1 -1
View File
@@ -392,7 +392,7 @@ void MainWindow::updateStatusBar()
const Particle *particle = m_store->particleById(m_selectedParticleId);
if (particle)
{
pathComponents << particle->id;
pathComponents << "p_" + particle->id.right(5);
}
}