UI updates

This commit is contained in:
Alex Spataru 2021-02-15 16:53:00 -05:00
parent a9ad58b62e
commit fc586ea706
5 changed files with 22 additions and 7 deletions

View File

@ -39,7 +39,7 @@ Control {
//
ColumnLayout {
anchors.fill: parent
anchors.margins: app.spacing / 2
anchors.margins: app.spacing
GridLayout {
columns: 2

View File

@ -59,7 +59,7 @@ Control {
//
ColumnLayout {
anchors.fill: parent
anchors.margins: app.spacing / 2
anchors.margins: app.spacing
//
// Controls

View File

@ -39,7 +39,7 @@ Control {
//
ColumnLayout {
anchors.fill: parent
anchors.margins: app.spacing / 2
anchors.margins: app.spacing
//
// Controls

View File

@ -162,7 +162,7 @@ Control {
QmlPlainTextEdit {
id: textEdit
focus: true
readOnly: false
readOnly: true
font.pixelSize: 12
centerOnScroll: false
undoRedoEnabled: false

View File

@ -215,17 +215,31 @@ Control {
Layout.fillWidth: true
Layout.fillHeight: true
currentIndex: tab.currentIndex
Layout.topMargin: -parent.spacing
Layout.minimumHeight: serial.implicitHeight + 14
SetupPanes.Serial {
id: serial
background: TextField {
enabled: false
palette.base: "#16232a"
}
}
SetupPanes.Network {
id: network
background: TextField {
enabled: false
palette.base: "#16232a"
}
}
SetupPanes.Settings {
id: settings
background: TextField {
enabled: false
palette.base: "#16232a"
}
}
}
@ -233,8 +247,8 @@ Control {
// Spacer
//
Item {
Layout.minimumHeight: app.spacing / 2
Layout.maximumHeight: app.spacing / 2
Layout.fillHeight: true
Layout.minimumHeight: app.spacing
}
//
@ -308,7 +322,8 @@ Control {
// Spacer
//
Item {
height: app.spacing * 2
Layout.fillHeight: true
Layout.minimumHeight: app.spacing
}
}
}