fix(mainWindow): increase logo area height

This commit is contained in:
Ronan Abhamon 2016-10-17 10:09:08 +02:00
parent 6a9af0e040
commit c75b1befd2
2 changed files with 4 additions and 2 deletions

View file

@ -96,7 +96,9 @@ Item {
// call.
//
// The timeout is destroyed with the `MouseArea` component.
_timeout = Utils.setTimeout.call(this, 0, item.pressed.bind(this))
_timeout = Utils.setTimeout.call(
this, 0, item.pressed.bind(this)
)
}
}
}

View file

@ -205,7 +205,7 @@ ApplicationWindow {
// Logo.
Rectangle {
Layout.fillWidth: true
Layout.preferredHeight: 70
Layout.preferredHeight: 80
color: '#EAEAEA'
}
}