mirror of
https://github.com/AyuGram/AyuGramDesktop.git
synced 2025-06-05 06:33:57 +02:00
parent
0527e9a0f7
commit
4f5594c8cc
1 changed files with 6 additions and 0 deletions
|
@ -4030,6 +4030,12 @@ void InnerWidget::setupShortcuts() {
|
||||||
request->check(Command::ChatNext) && request->handle([=] {
|
request->check(Command::ChatNext) && request->handle([=] {
|
||||||
return jumpToDialogRow(next);
|
return jumpToDialogRow(next);
|
||||||
});
|
});
|
||||||
|
} else if (_state == WidgetState::Default
|
||||||
|
? !_shownList->empty()
|
||||||
|
: !_filterResults.empty()) {
|
||||||
|
request->check(Command::ChatNext) && request->handle([=] {
|
||||||
|
return jumpToDialogRow(first);
|
||||||
|
});
|
||||||
}
|
}
|
||||||
request->check(Command::ChatFirst) && request->handle([=] {
|
request->check(Command::ChatFirst) && request->handle([=] {
|
||||||
return jumpToDialogRow(first);
|
return jumpToDialogRow(first);
|
||||||
|
|
Loading…
Add table
Reference in a new issue