From b0a9fc708567d9394635620ca0bac140b654e466 Mon Sep 17 00:00:00 2001 From: Cameron Gutman Date: Sun, 9 Sep 2018 11:49:34 -0700 Subject: [PATCH] Add Help option to connection failure dialog --- app/gui/StreamSegue.qml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/app/gui/StreamSegue.qml b/app/gui/StreamSegue.qml index 7331ca9a..9ed6fa00 100644 --- a/app/gui/StreamSegue.qml +++ b/app/gui/StreamSegue.qml @@ -108,6 +108,9 @@ Item { id: errorDialog modality:Qt.WindowModal icon: StandardIcon.Critical - standardButtons: StandardButton.Ok + standardButtons: StandardButton.Ok | StandardButton.Help + onHelp: { + Qt.openUrlExternally("https://github.com/moonlight-stream/moonlight-docs/wiki/Troubleshooting"); + } } }