Fixed pile view bug

When sorting a view which has the last column the longest an error
happens where the view is squashed.
This commit is contained in:
Matt Lowe 2015-02-01 00:31:25 +01:00
parent 6d4716b38f
commit 42c4f4a08c

View file

@ -118,7 +118,6 @@ void ZoneViewZone::reorganizeCards()
typeRow++; // add below current card
else { // if no match then move card to next column
typeColumn++;
longestRow = qMax(typeRow, longestRow);
typeRow = 0;
}
}
@ -128,6 +127,7 @@ void ZoneViewZone::reorganizeCards()
qreal y = typeRow * CARD_HEIGHT / 3;
c->setPos(x + 5, y + 5);
c->setRealZValue(i);
longestRow = qMax(typeRow, longestRow);
}
} else {
for (int i = 0; i < cardCount; i++) {