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:
parent
6d4716b38f
commit
42c4f4a08c
1 changed files with 1 additions and 1 deletions
|
@ -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++) {
|
||||
|
|
Loading…
Reference in a new issue