Skip to content

Commit

Permalink
Merge branch 'master' of github.com:Feqzz/qZoom-Client
Browse files Browse the repository at this point in the history
  • Loading branch information
Feqzz committed Aug 4, 2020
2 parents 5b5e684 + 06364d5 commit ca1c3db
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
6 changes: 5 additions & 1 deletion components/Header.qml
Original file line number Diff line number Diff line change
@@ -1,11 +1,14 @@
import QtQuick 2.0


Rectangle {
//color: parent.color
width: parent.width
height: 150
height: Math.min(parent.height / 5, 150)


Column {
height: parent.height
spacing: 50
anchors.fill: parent
anchors.horizontalCenter: parent.horizontalCenter
Expand All @@ -23,6 +26,7 @@ Rectangle {
height: 5
width: parent.width
color: "#5CBB5C"
anchors.verticalCenter: parent.bottom
}
}

Expand Down
4 changes: 2 additions & 2 deletions view/main.qml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ ApplicationWindow {
visible: true
width: 1280
height: 784
minimumHeight: 400
minimumWidth: 400
minimumHeight: 600
minimumWidth: 600
title: qsTr("qZoom")

Settings {
Expand Down

0 comments on commit ca1c3db

Please sign in to comment.