mirror of https://github.com/procxx/kepka.git
Add Ctrl+9 shortcut to show archive.
This commit is contained in:
parent
a52dfe7998
commit
3bc58fb690
|
@ -74,6 +74,8 @@ const auto CommandByName = base::flat_map<QString, Command>{
|
|||
{ qsl("first_chat") , Command::ChatFirst },
|
||||
{ qsl("last_chat") , Command::ChatLast },
|
||||
{ qsl("self_chat") , Command::ChatSelf },
|
||||
|
||||
{ qsl("show_archive") , Command::ShowArchive },
|
||||
};
|
||||
|
||||
const auto CommandNames = base::flat_map<Command, QString>{
|
||||
|
@ -96,6 +98,8 @@ const auto CommandNames = base::flat_map<Command, QString>{
|
|||
{ Command::ChatFirst , qsl("first_chat") },
|
||||
{ Command::ChatLast , qsl("last_chat") },
|
||||
{ Command::ChatSelf , qsl("self_chat") },
|
||||
|
||||
{ Command::ShowArchive , qsl("show_archive") },
|
||||
};
|
||||
|
||||
class Manager {
|
||||
|
@ -331,6 +335,8 @@ void Manager::fillDefaults() {
|
|||
set(qsl("ctrl+5"), Command::ChatPinned5);
|
||||
|
||||
set(qsl("ctrl+0"), Command::ChatSelf);
|
||||
|
||||
set(qsl("ctrl+9"), Command::ShowArchive);
|
||||
}
|
||||
|
||||
void Manager::writeDefaultFile() {
|
||||
|
|
|
@ -35,6 +35,8 @@ enum class Command {
|
|||
ChatPinned4,
|
||||
ChatPinned5,
|
||||
|
||||
ShowArchive,
|
||||
|
||||
SupportReloadTemplates,
|
||||
SupportToggleMuted,
|
||||
SupportScrollToCurrent,
|
||||
|
|
|
@ -2953,6 +2953,16 @@ void InnerWidget::setupShortcuts() {
|
|||
App::main()->choosePeer(session().userPeerId(), ShowAtUnreadMsgId);
|
||||
return true;
|
||||
});
|
||||
request->check(Command::ShowArchive) && request->handle([=] {
|
||||
const auto folder = session().data().folderLoaded(
|
||||
Data::Folder::kId);
|
||||
if (folder && !folder->chatsList()->empty()) {
|
||||
App::wnd()->sessionController()->openFolder(folder);
|
||||
Ui::hideSettingsAndLayer();
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
});
|
||||
|
||||
static const auto kPinned = {
|
||||
Command::ChatPinned1,
|
||||
|
|
Loading…
Reference in New Issue