diff options
-rw-r--r-- | plugins/NewStory/src/history_array.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/plugins/NewStory/src/history_array.cpp b/plugins/NewStory/src/history_array.cpp index f83e764288..dff781605f 100644 --- a/plugins/NewStory/src/history_array.cpp +++ b/plugins/NewStory/src/history_array.cpp @@ -775,6 +775,8 @@ void HistoryArray::remove(int id) }
else {
iLastPageCounter--;
- memset(&pages[nPages].data[iLastPageCounter], 0, sizeof(ItemData));
+ auto &pLast = pages[nPages].data[iLastPageCounter];
+ memset(&pLast, 0, sizeof(ItemData));
+ pLast.savedHeight = -1;
}
}
|