X-Git-Url: http://git.code-monkey.de/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fwidgets%2Ftimestampspinbox.cpp;h=463a846277d814bcebed936335e18d73a6314f55;hp=703da6ea13cb51aaf2f9581c4cbbbbea7cc19def;hb=2ad82c2e40b6865481733913a2c32735602f63c4;hpb=806d3e1eb3d60e93ff95d23e79588a0486730967 diff --git a/pv/widgets/timestampspinbox.cpp b/pv/widgets/timestampspinbox.cpp index 703da6e..463a846 100644 --- a/pv/widgets/timestampspinbox.cpp +++ b/pv/widgets/timestampspinbox.cpp @@ -104,8 +104,7 @@ void TimestampSpinBox::on_editingFinished() captures.removeFirst(); // remove entire match QString str = captures.join(""); setValue(pv::util::Timestamp(str.toStdString())); - } - else { + } else { // replace the malformed entered string with the old value updateEdit(); } @@ -113,8 +112,8 @@ void TimestampSpinBox::on_editingFinished() void TimestampSpinBox::updateEdit() { - QString newtext = pv::util::format_si_value( - value_, "s", 8, precision_); + QString newtext = pv::util::format_time_si( + value_, pv::util::SIPrefix::none, precision_); lineEdit()->setText(newtext); }