Changed setRaw Value

This commit is contained in:
2026-01-18 22:47:26 +01:00
parent 093b90fab6
commit 4309d2231e
4 changed files with 26 additions and 6 deletions

View File

@@ -60,10 +60,9 @@ QWidget* BCValueDelegate::createEditor(QWidget *parent, const QStyleOptionViewIt
Q_UNUSED(option)
Q_UNUSED(index)
const BCValue& bcValue = *(_valueList[ index.row()].get());
const BCValue& bcValue = *(_valueList[ index.row()].get());
qDebug() << " --- upsy: " << bcValue.getLabel() << " ratio: " << bcValue.calcMinMaxRatio() << " raw: " << bcValue.getRawValue() << " scaled: " << bcValue.getScaledValue();
qDebug() << " --- Create Editor: " << bcValue.getLabel() << " ratio: " << bcValue.calcMinMaxRatio() << " raw: " << bcValue.getRawValue() << " scaled: " << bcValue.getScaledValue();
auto* valueEditor = new BCValueEditor(bcValue.getScaledValue(), parent);