mirror of https://github.com/procxx/kepka.git
Added Shortcut to jump to the Saved Messages.
This commit is contained in:
parent
ef682e7023
commit
6fe736c9fc
|
@ -66,6 +66,7 @@ const auto CommandByName = base::flat_map<QString, Command>{
|
||||||
{ qsl("next_chat") , Command::ChatNext },
|
{ qsl("next_chat") , Command::ChatNext },
|
||||||
{ qsl("first_chat") , Command::ChatFirst },
|
{ qsl("first_chat") , Command::ChatFirst },
|
||||||
{ qsl("last_chat") , Command::ChatLast },
|
{ qsl("last_chat") , Command::ChatLast },
|
||||||
|
{ qsl("self_chat") , Command::ChatSelf },
|
||||||
};
|
};
|
||||||
|
|
||||||
const auto CommandNames = base::flat_map<Command, QString>{
|
const auto CommandNames = base::flat_map<Command, QString>{
|
||||||
|
@ -87,6 +88,7 @@ const auto CommandNames = base::flat_map<Command, QString>{
|
||||||
{ Command::ChatNext , qsl("next_chat") },
|
{ Command::ChatNext , qsl("next_chat") },
|
||||||
{ Command::ChatFirst , qsl("first_chat") },
|
{ Command::ChatFirst , qsl("first_chat") },
|
||||||
{ Command::ChatLast , qsl("last_chat") },
|
{ Command::ChatLast , qsl("last_chat") },
|
||||||
|
{ Command::ChatSelf , qsl("self_chat") },
|
||||||
};
|
};
|
||||||
|
|
||||||
class Manager {
|
class Manager {
|
||||||
|
@ -320,6 +322,8 @@ void Manager::fillDefaults() {
|
||||||
set(qsl("ctrl+3"), Command::ChatPinned3);
|
set(qsl("ctrl+3"), Command::ChatPinned3);
|
||||||
set(qsl("ctrl+4"), Command::ChatPinned4);
|
set(qsl("ctrl+4"), Command::ChatPinned4);
|
||||||
set(qsl("ctrl+5"), Command::ChatPinned5);
|
set(qsl("ctrl+5"), Command::ChatPinned5);
|
||||||
|
|
||||||
|
set(qsl("ctrl+0"), Command::ChatSelf);
|
||||||
}
|
}
|
||||||
|
|
||||||
void Manager::writeDefaultFile() {
|
void Manager::writeDefaultFile() {
|
||||||
|
|
|
@ -28,6 +28,7 @@ enum class Command {
|
||||||
ChatNext,
|
ChatNext,
|
||||||
ChatFirst,
|
ChatFirst,
|
||||||
ChatLast,
|
ChatLast,
|
||||||
|
ChatSelf,
|
||||||
ChatPinned1,
|
ChatPinned1,
|
||||||
ChatPinned2,
|
ChatPinned2,
|
||||||
ChatPinned3,
|
ChatPinned3,
|
||||||
|
|
|
@ -2915,6 +2915,10 @@ void DialogsInner::setupShortcuts() {
|
||||||
request->check(Command::ChatLast) && request->handle([=] {
|
request->check(Command::ChatLast) && request->handle([=] {
|
||||||
return jumpToDialogRow(last);
|
return jumpToDialogRow(last);
|
||||||
});
|
});
|
||||||
|
request->check(Command::ChatSelf) && request->handle([] {
|
||||||
|
App::main()->choosePeer(Auth().userPeerId(), ShowAtUnreadMsgId);
|
||||||
|
return true;
|
||||||
|
});
|
||||||
|
|
||||||
static const auto kPinned = {
|
static const auto kPinned = {
|
||||||
Command::ChatPinned1,
|
Command::ChatPinned1,
|
||||||
|
|
Loading…
Reference in New Issue