Commit a80c61ba authored by Aleksi Suomalainen's avatar Aleksi Suomalainen

[rename] Rename the labels to descriptive names.

parent 3c392d7f
...@@ -56,13 +56,13 @@ GridView { ...@@ -56,13 +56,13 @@ GridView {
property alias uninstall: uninstall property alias uninstall: uninstall
Rectangle { Rectangle {
id: remove id: remove
property alias text: lbl.text property alias text: removeLabel.text
visible: onUninstall visible: onUninstall
height: 110 height: 110
color: "red" color: "red"
width: gridview.width / 2 width: gridview.width / 2
Label { Label {
id: lbl id: removeLabel
anchors.centerIn: parent anchors.centerIn: parent
text: "Remove" text: "Remove"
font.pointSize: 8 font.pointSize: 8
...@@ -70,14 +70,14 @@ GridView { ...@@ -70,14 +70,14 @@ GridView {
} }
Rectangle { Rectangle {
id: uninstall id: uninstall
property alias text: lbl2.text property alias text: uninstallLabel.text
anchors.left: remove.right anchors.left: remove.right
visible: onUninstall visible: onUninstall
color: "red" color: "red"
width: gridview.width / 2 width: gridview.width / 2
height: 110 height: 110
Label { Label {
id: lbl2 id: uninstallLabel
anchors.centerIn: parent anchors.centerIn: parent
text: "Uninstall" text: "Uninstall"
font.pointSize: 8 font.pointSize: 8
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment