mirror of https://github.com/procxx/kepka.git
Attempt to fix an assertion violation.
In some cases HistoryItem::attachToBlock was not calling History::setHasPendingResizedItems (if it was not pending resize). That could lead to addition of a whole block of items without setting pending resize for the history and it violated the history invariant of the _blocks y/height and their _items y/height. Now each time we attachToBlock an item we also setPendingResize it.
This commit is contained in:
parent
d581e00299
commit
5fe75fbd5f
|
@ -529,9 +529,7 @@ public:
|
||||||
|
|
||||||
_block = block;
|
_block = block;
|
||||||
_indexInBlock = index;
|
_indexInBlock = index;
|
||||||
if (pendingResize()) {
|
setPendingResize();
|
||||||
_history->setHasPendingResizedItems();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
void setIndexInBlock(int index) {
|
void setIndexInBlock(int index) {
|
||||||
Expects(_block != nullptr);
|
Expects(_block != nullptr);
|
||||||
|
@ -540,13 +538,9 @@ public:
|
||||||
_indexInBlock = index;
|
_indexInBlock = index;
|
||||||
}
|
}
|
||||||
int indexInBlock() const {
|
int indexInBlock() const {
|
||||||
if (_indexInBlock >= 0) {
|
Expects((_indexInBlock >= 0) == (_block != nullptr));
|
||||||
t_assert(_block != nullptr);
|
Expects((_block == nullptr) || (_block->items[_indexInBlock] == this));
|
||||||
t_assert(_block->items.at(_indexInBlock) == this);
|
|
||||||
} else if (_block != nullptr) {
|
|
||||||
t_assert(_indexInBlock >= 0);
|
|
||||||
t_assert(_block->items.at(_indexInBlock) == this);
|
|
||||||
}
|
|
||||||
return _indexInBlock;
|
return _indexInBlock;
|
||||||
}
|
}
|
||||||
bool out() const {
|
bool out() const {
|
||||||
|
|
Loading…
Reference in New Issue