Untangle the time formatting functions a bit
[pulseview.git] / pv / toolbars / mainbar.cpp
index fff245d31e8d44b3b3986480f339c44a031b7ce9..dcc35ecee8f4e42800354080e0b2b34d047ebbcb 100644 (file)
@@ -587,7 +587,8 @@ bool MainBar::eventFilter(QObject *watched, QEvent *event)
                auto sec = pv::util::Timestamp(sample_count_.value()) / sample_rate_.value();
                QHelpEvent *help_event = static_cast<QHelpEvent*>(event);
 
-               QString str = tr("Total sampling time: %1").arg(pv::util::format_second(sec));
+               QString str = tr("Total sampling time: %1").arg(
+                       pv::util::format_time_si(sec, pv::util::SIPrefix::unspecified, 0, "s", false));
                QToolTip::showText(help_event->globalPos(), str);
 
                return true;