summaryrefslogtreecommitdiff
path: root/gui/qml/main.qml
diff options
context:
space:
mode:
Diffstat (limited to 'gui/qml/main.qml')
-rw-r--r--gui/qml/main.qml6
1 files changed, 5 insertions, 1 deletions
diff --git a/gui/qml/main.qml b/gui/qml/main.qml
index a3218de..5d8b825 100644
--- a/gui/qml/main.qml
+++ b/gui/qml/main.qml
@@ -242,7 +242,11 @@ ApplicationWindow {
MenuItem {
text: qsTr("Help...")
- onTriggered: Qt.openUrlExternally(ctx.helpURL)
+
+ onTriggered: {
+ console.debug(Qt.resolvedUrl(ctx.helpURL));
+ Qt.openUrlExternally(Qt.resolvedUrl(ctx.helpURL))
+ }
}
MenuItem {