From 50cad3f4527ee500447f2cfb597e7e51a5a2b9b1 Mon Sep 17 00:00:00 2001 From: Akira Ohgaki <akiraohgaki@gmail.com> Date: Sat, 15 Oct 2016 10:59:12 +0900 Subject: [PATCH] Open destination folder --- src/qml/main.qml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/qml/main.qml b/src/qml/main.qml index 27f892a..03e6d18 100644 --- a/src/qml/main.qml +++ b/src/qml/main.qml @@ -32,8 +32,12 @@ Window { text: '' informativeText: '' detailedText: '' - standardButtons: StandardButton.Ok - onAccepted: Qt.quit() + standardButtons: StandardButton.Open | StandardButton.Close + onAccepted: { + xdgUrlHandler.openDestination(); + Qt.quit(); + } + onRejected: Qt.quit() } MessageDialog { -- GitLab