1
0
mirror of https://github.com/Swordfish90/cool-retro-term.git synced 2026-02-08 00:32:27 +00:00

Slightly improve the settings layouts.

This commit is contained in:
Filippo Scognamiglio
2025-12-15 00:20:02 +01:00
parent f77dad0c47
commit 477621dd3e
6 changed files with 40 additions and 20 deletions

View File

@@ -27,7 +27,9 @@ import "Components"
ColumnLayout {
GroupBox {
Layout.fillWidth: true
Layout.fillHeight: true
title: qsTr("Command")
padding: appSettings.defaultMargin
ColumnLayout {
anchors.fill: parent
@@ -60,9 +62,32 @@ ColumnLayout {
}
}
GroupBox {
title: qsTr("Cursor")
Layout.fillWidth: true
Layout.fillHeight: true
padding: appSettings.defaultMargin
ColumnLayout {
anchors.fill: parent
CheckBox {
id: blinkingCursor
text: qsTr("Blinking Cursor")
checked: appSettings.blinkingCursor
onCheckedChanged: appSettings.blinkingCursor = checked
}
Binding {
target: blinkingCursor
property: "checked"
value: appSettings.blinkingCursor
}
}
}
GroupBox {
title: qsTr("Performance")
Layout.fillWidth: true
Layout.fillHeight: true
padding: appSettings.defaultMargin
GridLayout {
anchors.fill: parent
columns: 4