Skip to content
Snippets Groups Projects
Commit 8d1b7817 authored by akiraohgaki's avatar akiraohgaki
Browse files

Fix for dialog default size

parent b5363739
No related branches found
No related tags found
No related merge requests found
...@@ -56,6 +56,10 @@ Window { ...@@ -56,6 +56,10 @@ Window {
Dialog { Dialog {
id: progressDialog id: progressDialog
title: root.title title: root.title
property alias primaryLabel: primaryLabel
property alias informativeLabel: informativeLabel
property alias progressBar: progressBar
property alias progressLabel: progressLabel
contentItem: Item { contentItem: Item {
implicitWidth: 400 implicitWidth: 400
implicitHeight: 150 implicitHeight: 150
...@@ -65,12 +69,12 @@ Window { ...@@ -65,12 +69,12 @@ Window {
spacing: 8 spacing: 8
Label { Label {
id: primaryLabel id: primaryLabel
text: "" text: " "
font.bold: true font.bold: true
} }
Label { Label {
id: informativeLabel id: informativeLabel
text: "" text: " "
} }
ProgressBar { ProgressBar {
id: progressBar id: progressBar
...@@ -82,7 +86,7 @@ Window { ...@@ -82,7 +86,7 @@ Window {
} }
Label { Label {
id: progressLabel id: progressLabel
text: "" text: " "
anchors.right: parent.right anchors.right: parent.right
} }
Button { Button {
...@@ -93,10 +97,6 @@ Window { ...@@ -93,10 +97,6 @@ Window {
} }
} }
} }
property alias primaryLabel: primaryLabel
property alias informativeLabel: informativeLabel
property alias progressBar: progressBar
property alias progressLabel: progressLabel
} }
Component.onCompleted: { Component.onCompleted: {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment