]> sigrok.org Git - pulseview.git/blobdiff - pv/widgets/timestampspinbox.cpp
Untangle the time formatting functions a bit
[pulseview.git] / pv / widgets / timestampspinbox.cpp
index 59af82f65407629b0937ec66bc14308b190188d1..233ff6484f562b9d723a0bd74a9e587c82fc686d 100644 (file)
@@ -113,8 +113,8 @@ void TimestampSpinBox::on_editingFinished()
 
 void TimestampSpinBox::updateEdit()
 {
-       QString newtext = pv::util::format_si_value(
-               value_, "s", pv::util::SIPrefix::none, precision_);
+       QString newtext = pv::util::format_time_si(
+               value_, pv::util::SIPrefix::none, precision_);
        lineEdit()->setText(newtext);
 }