diff --git a/Telegram/SourceFiles/core/shortcuts.cpp b/Telegram/SourceFiles/core/shortcuts.cpp index d8279bc50..f10a027bc 100644 --- a/Telegram/SourceFiles/core/shortcuts.cpp +++ b/Telegram/SourceFiles/core/shortcuts.cpp @@ -310,6 +310,12 @@ void Manager::fillDefaults() { set(qsl("f5"), Command::SupportReloadTemplates); set(qsl("ctrl+delete"), Command::SupportToggleMuted); set(qsl("ctrl+insert"), Command::SupportScrollToCurrent); + + set(qsl("ctrl+1"), Command::ChatPinned1); + set(qsl("ctrl+2"), Command::ChatPinned2); + set(qsl("ctrl+3"), Command::ChatPinned3); + set(qsl("ctrl+4"), Command::ChatPinned4); + set(qsl("ctrl+5"), Command::ChatPinned5); } void Manager::writeDefaultFile() { diff --git a/Telegram/SourceFiles/core/shortcuts.h b/Telegram/SourceFiles/core/shortcuts.h index ac7e1db56..a985b9e6e 100644 --- a/Telegram/SourceFiles/core/shortcuts.h +++ b/Telegram/SourceFiles/core/shortcuts.h @@ -28,6 +28,11 @@ enum class Command { ChatNext, ChatFirst, ChatLast, + ChatPinned1, + ChatPinned2, + ChatPinned3, + ChatPinned4, + ChatPinned5, SupportReloadTemplates, SupportToggleMuted, diff --git a/Telegram/SourceFiles/dialogs/dialogs_inner_widget.cpp b/Telegram/SourceFiles/dialogs/dialogs_inner_widget.cpp index f79b43fd1..3a3251bad 100644 --- a/Telegram/SourceFiles/dialogs/dialogs_inner_widget.cpp +++ b/Telegram/SourceFiles/dialogs/dialogs_inner_widget.cpp @@ -2844,6 +2844,25 @@ void DialogsInner::setupShortcuts() { request->check(Command::ChatLast) && request->handle([=] { return jumpToDialogRow(last); }); + + static const auto kPinned = { + Command::ChatPinned1, + Command::ChatPinned2, + Command::ChatPinned3, + Command::ChatPinned4, + Command::ChatPinned5, + }; + auto &&pinned = ranges::view::zip(kPinned, ranges::view::ints(0)); + for (const auto [command, index] : pinned) { + request->check(command) && request->handle([=, index = index] { + const auto count = shownPinnedCount(); + if (index >= count) { + return false; + } + const auto row = *(shownDialogs()->cbegin() + index); + return jumpToDialogRow({ row->key(), FullMsgId() }); + }); + } if (Auth().supportMode() && row.key.history()) { request->check( Command::SupportScrollToCurrent