mirror of https://github.com/procxx/kepka.git
Overview filling fix when you scroll the history down till the bottom.
This commit is contained in:
parent
4cd7a7a695
commit
79eafbe71a
|
@ -1345,24 +1345,8 @@ void History::addNewerSlice(const QVector<MTPMessage> &slice) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!wasLoadedAtBottom && loadedAtBottom()) { // add all loaded photos to overview
|
if (!wasLoadedAtBottom) {
|
||||||
int32 mask = 0;
|
checkAddAllToOverview();
|
||||||
for (int32 i = 0; i < OverviewCount; ++i) {
|
|
||||||
if (overviewCountData[i] == 0) continue; // all loaded
|
|
||||||
if (!overview[i].isEmpty() || !overviewIds[i].isEmpty()) {
|
|
||||||
overview[i].clear();
|
|
||||||
overviewIds[i].clear();
|
|
||||||
mask |= (1 << i);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
for_const (HistoryBlock *block, blocks) {
|
|
||||||
for_const (HistoryItem *item, block->items) {
|
|
||||||
mask |= item->addToOverview(AddToOverviewBack);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
for (int32 t = 0; t < OverviewCount; ++t) {
|
|
||||||
if ((mask & (1 << t)) && App::wnd()) App::wnd()->mediaOverviewUpdated(peer, MediaOverviewType(t));
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (isChannel()) asChannelHistory()->checkJoinedMessage();
|
if (isChannel()) asChannelHistory()->checkJoinedMessage();
|
||||||
|
@ -1373,12 +1357,37 @@ void History::checkLastMsg() {
|
||||||
if (lastMsg) {
|
if (lastMsg) {
|
||||||
if (!newLoaded && !lastMsg->detached()) {
|
if (!newLoaded && !lastMsg->detached()) {
|
||||||
newLoaded = true;
|
newLoaded = true;
|
||||||
|
checkAddAllToOverview();
|
||||||
}
|
}
|
||||||
} else if (newLoaded) {
|
} else if (newLoaded) {
|
||||||
setLastMessage(lastImportantMessage());
|
setLastMessage(lastImportantMessage());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void History::checkAddAllToOverview() {
|
||||||
|
if (!loadedAtBottom()) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
int32 mask = 0;
|
||||||
|
for (int32 i = 0; i < OverviewCount; ++i) {
|
||||||
|
if (overviewCountData[i] == 0) continue; // all loaded
|
||||||
|
if (!overview[i].isEmpty() || !overviewIds[i].isEmpty()) {
|
||||||
|
overview[i].clear();
|
||||||
|
overviewIds[i].clear();
|
||||||
|
mask |= (1 << i);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
for_const (HistoryBlock *block, blocks) {
|
||||||
|
for_const (HistoryItem *item, block->items) {
|
||||||
|
mask |= item->addToOverview(AddToOverviewBack);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
for (int32 t = 0; t < OverviewCount; ++t) {
|
||||||
|
if ((mask & (1 << t)) && App::wnd()) App::wnd()->mediaOverviewUpdated(peer, MediaOverviewType(t));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
int History::countUnread(MsgId upTo) {
|
int History::countUnread(MsgId upTo) {
|
||||||
int result = 0;
|
int result = 0;
|
||||||
for (auto i = blocks.cend(), e = blocks.cbegin(); i != e;) {
|
for (auto i = blocks.cend(), e = blocks.cbegin(); i != e;) {
|
||||||
|
|
|
@ -494,6 +494,9 @@ private:
|
||||||
// After adding a new history slice check the lastMsg and newLoaded.
|
// After adding a new history slice check the lastMsg and newLoaded.
|
||||||
void checkLastMsg();
|
void checkLastMsg();
|
||||||
|
|
||||||
|
// Add all items to the media overview if we were not loaded at bottom and now are.
|
||||||
|
void checkAddAllToOverview();
|
||||||
|
|
||||||
enum class Flag {
|
enum class Flag {
|
||||||
f_has_pending_resized_items = (1 << 0),
|
f_has_pending_resized_items = (1 << 0),
|
||||||
f_pending_resize = (1 << 1),
|
f_pending_resize = (1 << 1),
|
||||||
|
|
Loading…
Reference in New Issue