Fix disabling rows for the restriction of the second dimension.
This commit is contained in:
parent
63aba8728b
commit
228c40f975
|
@ -637,7 +637,7 @@ void DialogRestrictDimension::AddCell(int row, int column, qreal rowValue, qreal
|
|||
|
||||
if (m_dimensions.size() >= 2)
|
||||
{
|
||||
validRows = m_dimensions.at(0)->ValidBases();
|
||||
validRows = DimensionRestrictedValues(m_dimensions.at(0));
|
||||
dimension = m_dimensions.at(1);
|
||||
bases = dimension->ValidBases();
|
||||
}
|
||||
|
@ -855,7 +855,7 @@ auto DialogRestrictDimension::DimensionRestrictedValues(const MeasurementDimensi
|
|||
{
|
||||
VDimensionRestriction restriction;
|
||||
|
||||
if (m_restrictionType == RestrictDimension::First)
|
||||
if (m_restrictionType == RestrictDimension::First || m_restrictionType == RestrictDimension::Second)
|
||||
{
|
||||
restriction = m_restrictions.value(QChar('0'));
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user