From eb683d479367dfa9299d3a6e0f40ff516f0d8c29 Mon Sep 17 00:00:00 2001 From: howard-stearns Date: Mon, 26 Feb 2018 17:09:33 -0800 Subject: [PATCH] mail is a link --- interface/resources/qml/hifi/commerce/wallet/Help.qml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/interface/resources/qml/hifi/commerce/wallet/Help.qml b/interface/resources/qml/hifi/commerce/wallet/Help.qml index 9a94b4b1cf..fec8b6cae1 100644 --- a/interface/resources/qml/hifi/commerce/wallet/Help.qml +++ b/interface/resources/qml/hifi/commerce/wallet/Help.qml @@ -139,7 +139,8 @@ At the moment, there is currently no way to convert HFC to other currencies. Sta ListElement { isExpanded: false; question: "Who can I reach out to for additional questions?"; - answer: "Please email us if you have any issues or questions: support@highfidelity.com"; + answer: "Please email us if you have any issues or questions: \ +support@highfidelity.com"; } } @@ -250,7 +251,9 @@ At the moment, there is currently no way to convert HFC to other currencies. Sta Qt.openUrlExternally("file:///" + root.keyFilePath.substring(0, root.keyFilePath.lastIndexOf('/'))); } else if (link === "#blockchain") { Qt.openUrlExternally("https://docs.highfidelity.com/high-fidelity-commerce"); - } + } else if (link === "#support") { + Qt.openUrlExternally("mailto:support@highfidelity.com"); + } } } }