Commit f4b4f476 authored by DonLakeFlyer's avatar DonLakeFlyer Committed by Lorenz Meier

Fix forceSetRawValue usage pattern

parent 0b0f4b03
......@@ -161,9 +161,11 @@ void Fact::_containerSetRawValue(const QVariant& value)
if(_rawValue != value) {
_rawValue = value;
_sendValueChangedSignal(cookedValue());
emit vehicleUpdated(_rawValue);
emit rawValueChanged(_rawValue);
}
// This always need to be signalled in order to support forceSetRawValue usage and waiting for vehicleUpdated signal
emit vehicleUpdated(_rawValue);
}
QString Fact::name(void) const
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment