Fix some alignment related warnings.

This commit is contained in:
Filippo Scognamiglio
2018-10-28 01:08:21 +02:00
parent 162f59d220
commit 2ea119fb31
6 changed files with 13 additions and 24 deletions

View File

@@ -27,7 +27,6 @@ Tab{
ColumnLayout{
anchors.fill: parent
GroupBox{
anchors {left: parent.left; right: parent.right}
Layout.fillWidth: true
Layout.fillHeight: true
title: qsTr("Profile")
@@ -36,7 +35,7 @@ Tab{
TableView {
id: profilesView
Layout.fillWidth: true
anchors { top: parent.top; bottom: parent.bottom; }
Layout.fillHeight: true
model: appSettings.profilesList
headerVisible: false
TableViewColumn {
@@ -49,7 +48,7 @@ Tab{
}
}
ColumnLayout {
anchors { top: parent.top; bottom: parent.bottom }
Layout.fillHeight: true
Layout.fillWidth: false
Button{
Layout.fillWidth: true
@@ -161,7 +160,7 @@ Tab{
}
GroupBox{
anchors {left: parent.left; right: parent.right}
Layout.fillWidth: true
title: qsTr("Command")
ColumnLayout {
anchors.fill: parent
@@ -179,7 +178,7 @@ Tab{
}
TextField{
id: customCommand
anchors {left: parent.left; right: parent.right}
Layout.fillWidth: true
text: appSettings.customCommand
enabled: useCustomCommand.checked
onEditingFinished: appSettings.customCommand = text