Skip to content
Snippets Groups Projects
Commit 523854c3 authored by akiraohgaki's avatar akiraohgaki
Browse files

Fix for property

parent 7205fa4e
No related branches found
No related tags found
No related merge requests found
......@@ -114,12 +114,13 @@ Window {
Ui.Dialog {
id: progressDialog
//icon: StandardIcon.Warning
//icon: StandardIcon.NoIcon
rejectButton.text: qsTr("Cancel")
rejectButton.onClicked: Qt.quit()
property alias progress: progressBar.value
property alias progressText: progressText.text
content: ColumnLayout {
anchors.fill: parent
spacing: 8
ProgressBar {
id: progressBar
......
......@@ -34,7 +34,7 @@ ColumnLayout {
source: ""
width: 32
height: width
visible: source ? true : false
visible: source.toString() ? true : false
}
ColumnLayout {
Layout.fillWidth: true
......
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