mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
QML UI: Settings: remove more margins
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
c004e31dc2
commit
0476f6dc18
2 changed files with 5 additions and 5 deletions
|
@ -23,7 +23,7 @@ Item {
|
||||||
|
|
||||||
ColumnLayout {
|
ColumnLayout {
|
||||||
id: outerLayout
|
id: outerLayout
|
||||||
width: loginWindow.width
|
width: loginWindow.width - Kirigami.Units.gridUnit // to ensure the full input fields are visible
|
||||||
|
|
||||||
function goToNext() {
|
function goToNext() {
|
||||||
for (var i = 0; i < children.length; ++i)
|
for (var i = 0; i < children.length; ++i)
|
||||||
|
|
|
@ -11,16 +11,16 @@ Kirigami.ScrollablePage {
|
||||||
objectName: "Settings"
|
objectName: "Settings"
|
||||||
id: settingsPage
|
id: settingsPage
|
||||||
title: qsTr("Settings")
|
title: qsTr("Settings")
|
||||||
anchors.margins: Kirigami.Units.gridUnit / 2
|
|
||||||
property real gridWidth: settingsPage.width - 2 * Kirigami.Units.gridUnit
|
property real gridWidth: settingsPage.width - Kirigami.Units.gridUnit
|
||||||
|
|
||||||
ColumnLayout {
|
ColumnLayout {
|
||||||
width: parent.width - Kirigami.Units.gridUnit
|
width: gridWidth
|
||||||
CloudCredentials {
|
CloudCredentials {
|
||||||
id: cloudCredentials
|
id: cloudCredentials
|
||||||
Layout.fillWidth: true
|
Layout.fillWidth: true
|
||||||
Layout.rightMargin: Kirigami.Units.smallSpacing
|
Layout.rightMargin: Kirigami.Units.smallSpacing
|
||||||
Layout.topMargin: 0
|
Layout.topMargin: - Kirigami.Units.gridUnit
|
||||||
property int headingLevel: 4
|
property int headingLevel: 4
|
||||||
}
|
}
|
||||||
Rectangle {
|
Rectangle {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue