This commit is contained in:
2020-06-16 12:32:28 +02:00
parent c0e8e44b41
commit efc247f46f
5 changed files with 35 additions and 100 deletions

View File

@ -45,7 +45,9 @@ void qDacWidget::GetDac() {
spinDac->setValue(retval);
// mv
retval = det->getDAC(index, 1, {detectorIndex}).squash(-1);
lblDacmV->setText(QString("%1mV").arg(retval - 10));
// -6 is the minimum amt of space it occupies, if more needed, its
// padded with ' ', negative value for left aligned text
lblDacmV->setText(QString("%1mV").arg(retval, -6));
}
CATCH_DISPLAY(std::string("Could not get dac ") + std::to_string(index),
"qDacWidget::GetDac")