diff --git a/Telegram/SourceFiles/chat_helpers/message_field.cpp b/Telegram/SourceFiles/chat_helpers/message_field.cpp index 98d943b13..ef5bacc8c 100644 --- a/Telegram/SourceFiles/chat_helpers/message_field.cpp +++ b/Telegram/SourceFiles/chat_helpers/message_field.cpp @@ -34,6 +34,7 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL #include #include #include +#include namespace { @@ -713,20 +714,36 @@ void SetupSendMenuAndShortcuts( || (!silent && now == SendMenuType::SilentOnly)) { return; } - silent + (silent && (now != SendMenuType::Reminder) && request->check(Command::SendSilentMessage) && request->handle([=] { silent(); return true; - }); - - schedule + })) + || + (schedule && (now != SendMenuType::SilentOnly) && request->check(Command::ScheduleMessage) && request->handle([=] { schedule(); return true; - }); + })) + || + (request->check(Command::SendMessage) && request->handle([=] { + const auto post = [&](QEvent::Type type) { + QApplication::postEvent( + button, + new QMouseEvent( + type, + QPointF(0, 0), + Qt::LeftButton, + Qt::LeftButton, + Qt::NoModifier)); + }; + post(QEvent::MouseButtonPress); + post(QEvent::MouseButtonRelease); + return true; + })); }, button->lifetime()); } diff --git a/Telegram/SourceFiles/core/shortcuts.cpp b/Telegram/SourceFiles/core/shortcuts.cpp index fdf5fa46f..d6e3bf36d 100644 --- a/Telegram/SourceFiles/core/shortcuts.cpp +++ b/Telegram/SourceFiles/core/shortcuts.cpp @@ -78,6 +78,7 @@ const auto CommandByName = base::flat_map{ { qsl("show_archive") , Command::ShowArchive }, // Shortcuts that have no default values. + { qsl("message") , Command::SendMessage }, { qsl("message_silently") , Command::SendSilentMessage }, { qsl("message_scheduled"), Command::ScheduleMessage }, // diff --git a/Telegram/SourceFiles/core/shortcuts.h b/Telegram/SourceFiles/core/shortcuts.h index 569cc2dfd..2a9e42bb8 100644 --- a/Telegram/SourceFiles/core/shortcuts.h +++ b/Telegram/SourceFiles/core/shortcuts.h @@ -37,6 +37,7 @@ enum class Command { ShowArchive, + SendMessage, SendSilentMessage, ScheduleMessage,