mirror of https://github.com/procxx/kepka.git
Fix jump to first chat with archive.
This commit is contained in:
parent
a465117689
commit
e2c1c4c8de
|
@ -2993,11 +2993,16 @@ RowDescriptor InnerWidget::computeJump(
|
||||||
const RowDescriptor &to,
|
const RowDescriptor &to,
|
||||||
JumpSkip skip) {
|
JumpSkip skip) {
|
||||||
auto result = to;
|
auto result = to;
|
||||||
if (session().supportMode() && result.key) {
|
if (result.key) {
|
||||||
const auto down = (skip == JumpSkip::NextOrEnd)
|
const auto down = (skip == JumpSkip::NextOrEnd)
|
||||||
|| (skip == JumpSkip::NextOrOriginal);
|
|| (skip == JumpSkip::NextOrOriginal);
|
||||||
while (!result.key.entry()->chatListUnreadCount()
|
const auto needSkip = [&] {
|
||||||
&& !result.key.entry()->chatListUnreadMark()) {
|
return (result.key.folder() != nullptr)
|
||||||
|
|| (session().supportMode()
|
||||||
|
&& !result.key.entry()->chatListUnreadCount()
|
||||||
|
&& !result.key.entry()->chatListUnreadMark());
|
||||||
|
};
|
||||||
|
while (needSkip()) {
|
||||||
const auto next = down
|
const auto next = down
|
||||||
? chatListEntryAfter(result)
|
? chatListEntryAfter(result)
|
||||||
: chatListEntryBefore(result);
|
: chatListEntryBefore(result);
|
||||||
|
|
Loading…
Reference in New Issue