From 5f97b3bc228b4902f523ae1b369f0aac3b3d3c95 Mon Sep 17 00:00:00 2001 From: 23rd <23rd@vivaldi.net> Date: Sat, 25 May 2019 17:34:04 +0300 Subject: [PATCH] Added ability to open links without confirmation with Ctrl key. - Fixed #6051. --- Telegram/SourceFiles/core/click_handler_types.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Telegram/SourceFiles/core/click_handler_types.cpp b/Telegram/SourceFiles/core/click_handler_types.cpp index 41a6a7a6e..e5a60e941 100644 --- a/Telegram/SourceFiles/core/click_handler_types.cpp +++ b/Telegram/SourceFiles/core/click_handler_types.cpp @@ -153,7 +153,8 @@ void HiddenUrlClickHandler::Open(QString url, QVariant context) { open(); } else { const auto parsedUrl = QUrl::fromUserInput(url); - if (UrlRequiresConfirmation(url)) { + if (UrlRequiresConfirmation(url) + && QGuiApplication::keyboardModifiers() != Qt::ControlModifier) { Core::App().hideMediaView(); const auto displayUrl = parsedUrl.isValid() ? parsedUrl.toDisplayString()