diff --git a/application/settings/SingleProfileSettings.qml b/application/settings/SingleProfileSettings.qml index fe56648..17d988c 100644 --- a/application/settings/SingleProfileSettings.qml +++ b/application/settings/SingleProfileSettings.qml @@ -64,6 +64,9 @@ Item { title: qsTr("Shell") ColumnLayout { + anchors.left: parent.left + anchors.right: parent.right + Label { text: qsTr("Set the shell that is used when you start a terminal with this profile") } @@ -87,20 +90,24 @@ Item { title: qsTr("Text") GridLayout { + anchors.left: parent.left + anchors.right: parent.right columns: 3 Label { + Layout.fillWidth: true text: qsTr("Font") } ComboBox { id: fontBox - Layout.fillWidth: true model: fontModel textRole: "family" valueRole: "family" + implicitWidth: 300 + onActivated: () => { profile.fontFamily = fontBox.currentValue; profile.saveProfile(); @@ -131,20 +138,24 @@ Item { title: qsTr("Colours") GridLayout { + anchors.left: parent.left + anchors.right: parent.right columns: 2 Label { + Layout.fillWidth: true text: qsTr("Theme") } ComboBox { id: colorsBox - Layout.fillWidth: true model: colorModel textRole: "description" valueRole: "identifier" + implicitWidth: 250 + onActivated: () => { profile.colorName = colorsBox.currentValue; profile.saveProfile(); diff --git a/application/translations/en_US.ts b/application/translations/en_US.ts index d79c662..8fb49ee 100644 --- a/application/translations/en_US.ts +++ b/application/translations/en_US.ts @@ -182,32 +182,32 @@ - - + + Set the shell that is used when you start a terminal with this profile - - + + Text - - + + Font - - + + Colours - - + + Theme