mirror of
https://github.com/fralx/LimeReport.git
synced 2024-12-25 00:54:39 +03:00
Merge pull request #311 from turbin/fixed-crash-issue-dueto-empty-list-reference
to fix the crash issue. due to extractAcceptableValue() function was …
This commit is contained in:
commit
69389eb6c6
@ -160,7 +160,10 @@ QString AlignmentItemEditor::displayValue() const
|
|||||||
|
|
||||||
void AlignmentItemEditor::setPropertyValue(QVariant value)
|
void AlignmentItemEditor::setPropertyValue(QVariant value)
|
||||||
{
|
{
|
||||||
ObjectPropItem::setPropertyValue(extractAcceptableValue(value.toInt())[0]);
|
QVector<int> _accpepttableValueList= extractAcceptableValue(value.toInt());
|
||||||
|
if(_accpepttableValueList.isEmpty()) return;
|
||||||
|
|
||||||
|
ObjectPropItem::setPropertyValue(_accpepttableValueList[0]);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user