mirror of https://github.com/procxx/kepka.git
Fix crash in history geometry update.
This commit is contained in:
parent
78d4f29af3
commit
6052a0de0e
|
@ -4747,8 +4747,12 @@ void HistoryWidget::notify_historyItemLayoutChanged(const HistoryItem *item) {
|
||||||
|
|
||||||
void HistoryWidget::notify_handlePendingHistoryUpdate() {
|
void HistoryWidget::notify_handlePendingHistoryUpdate() {
|
||||||
if (hasPendingResizedItems() || _updateHistoryGeometryRequired) {
|
if (hasPendingResizedItems() || _updateHistoryGeometryRequired) {
|
||||||
updateHistoryGeometry();
|
if (_list) {
|
||||||
_list->update();
|
updateHistoryGeometry();
|
||||||
|
_list->update();
|
||||||
|
} else {
|
||||||
|
_updateHistoryGeometryRequired = false;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue