diff --git a/app/qml/SettingsTerminalTab.qml b/app/qml/SettingsTerminalTab.qml index 222ea781..6f353646 100644 --- a/app/qml/SettingsTerminalTab.qml +++ b/app/qml/SettingsTerminalTab.qml @@ -114,7 +114,7 @@ ColumnLayout { } } GroupBox { - title: qsTr("Cursor") + title: qsTr("Behavior") Layout.fillWidth: true ColumnLayout { anchors.fill: parent @@ -129,6 +129,17 @@ ColumnLayout { property: "checked" value: appSettings.blinkingCursor } + CheckBox { + id: showTerminalSize + text: qsTr("Show dimensions on resize") + checked: appSettings.showTerminalSize + onCheckedChanged: appSettings.showTerminalSize = checked + } + Binding { + target: showTerminalSize + property: "checked" + value: appSettings.showTerminalSize + } } } GroupBox {