From c90b364f89a5ea8b21ab642126edd72ff31303e8 Mon Sep 17 00:00:00 2001
From: Akira Ohgaki <akiraohgaki@gmail.com>
Date: Fri, 14 Oct 2016 20:50:41 +0900
Subject: [PATCH] Add progress dialog

---
 src/qml/main.qml | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/src/qml/main.qml b/src/qml/main.qml
index c3896d1..13ae76d 100644
--- a/src/qml/main.qml
+++ b/src/qml/main.qml
@@ -46,6 +46,15 @@ Window {
         onAccepted: Qt.quit()
     }
 
+    MessageDialog {
+        id: progressDialog
+        title: root.title
+        contentItem: Rectangle {
+            implicitWidth: 400
+            implicitHeight: 200
+        }
+    }
+
     Component.onCompleted: {
         var metadata = JSON.parse(xdgUrlHandler.getMetadata());
 
-- 
GitLab