diff --git a/Telegram/Resources/langs/lang.strings b/Telegram/Resources/langs/lang.strings index a6cb33086..30ea2a818 100644 --- a/Telegram/Resources/langs/lang.strings +++ b/Telegram/Resources/langs/lang.strings @@ -2238,6 +2238,7 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL "lng_mac_menu_new_group" = "New Group"; "lng_mac_menu_new_channel" = "New Channel"; "lng_mac_menu_show" = "Show Telegram"; +"lng_mac_menu_emoji_and_symbols" = "Emoji & Symbols"; "lng_mac_touchbar_favorite_stickers" = "Favorite stickers"; diff --git a/Telegram/SourceFiles/platform/mac/main_window_mac.h b/Telegram/SourceFiles/platform/mac/main_window_mac.h index 933c0e84c..f02027294 100644 --- a/Telegram/SourceFiles/platform/mac/main_window_mac.h +++ b/Telegram/SourceFiles/platform/mac/main_window_mac.h @@ -49,6 +49,7 @@ public slots: void psMacPaste(); void psMacDelete(); void psMacSelectAll(); + void psMacEmojiAndSymbols(); void psMacBold(); void psMacItalic(); diff --git a/Telegram/SourceFiles/platform/mac/main_window_mac.mm b/Telegram/SourceFiles/platform/mac/main_window_mac.mm index 6bd5211d9..993b94630 100644 --- a/Telegram/SourceFiles/platform/mac/main_window_mac.mm +++ b/Telegram/SourceFiles/platform/mac/main_window_mac.mm @@ -716,6 +716,9 @@ void MainWindow::createGlobalMenu() { edit->addSeparator(); psSelectAll = edit->addAction(tr::lng_mac_menu_select_all(tr::now), this, SLOT(psMacSelectAll()), QKeySequence::SelectAll); + edit->addSeparator(); + edit->addAction(tr::lng_mac_menu_emoji_and_symbols(tr::now).replace('&', "&&"), this, SLOT(psMacEmojiAndSymbols()), QKeySequence(Qt::MetaModifier | Qt::ControlModifier | Qt::Key_Space)); + QMenu *window = psMainMenu.addMenu(tr::lng_mac_menu_window(tr::now)); psContacts = window->addAction(tr::lng_mac_menu_contacts(tr::now)); connect(psContacts, &QAction::triggered, psContacts, crl::guard(this, [=] { @@ -768,6 +771,10 @@ void MainWindow::psMacSelectAll() { SendKeySequence(Qt::Key_A, Qt::ControlModifier); } +void MainWindow::psMacEmojiAndSymbols() { + [NSApp orderFrontCharacterPalette:nil]; +} + void MainWindow::psMacBold() { SendKeySequence(Qt::Key_B, Qt::ControlModifier); }