From e966213ff8a37d2fda58995610fbc8240d279fff Mon Sep 17 00:00:00 2001 From: 23rd <23rd@vivaldi.net> Date: Fri, 10 Aug 2018 03:03:11 +0300 Subject: [PATCH] Added shortcut to open dialog for attachements. --- Telegram/SourceFiles/history/history_widget.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Telegram/SourceFiles/history/history_widget.cpp b/Telegram/SourceFiles/history/history_widget.cpp index e5b26d69c..5950f36d3 100644 --- a/Telegram/SourceFiles/history/history_widget.cpp +++ b/Telegram/SourceFiles/history/history_widget.cpp @@ -5351,6 +5351,8 @@ void HistoryWidget::keyPressEvent(QKeyEvent *e) { } } else if (e->key() == Qt::Key_Return || e->key() == Qt::Key_Enter) { onListEnterPressed(); + } else if (e->key() == Qt::Key_O && e->modifiers() == Qt::ControlModifier) { + chooseAttach(); } else { e->ignore(); }