Commit a53a62a4 authored by Gus Grubba's avatar Gus Grubba

Forgot to take the “Upload” button into account.

parent 5f259cf4
...@@ -87,6 +87,7 @@ Rectangle { ...@@ -87,6 +87,7 @@ Rectangle {
//-- The reason for this Row to be here is so the Logo (Home) button is in the same //-- The reason for this Row to be here is so the Logo (Home) button is in the same
// location as the one in the main toolbar. // location as the one in the main toolbar.
Row { Row {
id: logoRow
anchors.bottomMargin: 1 anchors.bottomMargin: 1
anchors.left: parent.left anchors.left: parent.left
anchors.top: parent.top anchors.top: parent.top
...@@ -108,11 +109,14 @@ Rectangle { ...@@ -108,11 +109,14 @@ Rectangle {
} }
Row { RowLayout {
anchors.top: parent.top anchors.top: parent.top
anchors.bottom: parent.bottom anchors.bottom: parent.bottom
spacing: _margins * 8 spacing: _margins * 2
anchors.horizontalCenter: parent.horizontalCenter anchors.left: logoRow.right
anchors.leftMargin: _margins * 4
anchors.right: uploadButton.visible ? uploadButton.left : parent.right
anchors.rightMargin: _margins
GridLayout { GridLayout {
anchors.verticalCenter: parent.verticalCenter anchors.verticalCenter: parent.verticalCenter
......
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