Skip to content

Commit

Permalink
Forgot to take the “Upload” button into account.
Browse files Browse the repository at this point in the history
  • Loading branch information
dogmaphobic committed Apr 6, 2017
1 parent 5f259cf commit a53a62a
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions src/PlanView/PlanToolBar.qml
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@ Rectangle {
//-- 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.
Row {
id: logoRow
anchors.bottomMargin: 1
anchors.left: parent.left
anchors.top: parent.top
Expand All @@ -108,11 +109,14 @@ Rectangle {
}


Row {
anchors.top: parent.top
anchors.bottom: parent.bottom
spacing: _margins * 8
anchors.horizontalCenter: parent.horizontalCenter
RowLayout {
anchors.top: parent.top
anchors.bottom: parent.bottom
spacing: _margins * 2
anchors.left: logoRow.right
anchors.leftMargin: _margins * 4
anchors.right: uploadButton.visible ? uploadButton.left : parent.right
anchors.rightMargin: _margins

GridLayout {
anchors.verticalCenter: parent.verticalCenter
Expand Down

0 comments on commit a53a62a

Please sign in to comment.