aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/plugins/help/helpviewer.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/plugins/help/helpviewer.cpp b/src/plugins/help/helpviewer.cpp
index 74dd7ddd95..a7ed56eda4 100644
--- a/src/plugins/help/helpviewer.cpp
+++ b/src/plugins/help/helpviewer.cpp
@@ -145,6 +145,10 @@ bool HelpViewer::launchWithExternalApp(const QUrl &url)
return QDesktopServices::openUrl(QUrl(saver.fileName()));
}
}
+
+ if (url.scheme() == QLatin1String("mailto"))
+ return QDesktopServices::openUrl(url);
+
return false;
}