From b61d7e05396c9bfe1b1b81f3482d0a739b4e8ff6 Mon Sep 17 00:00:00 2001 From: Timothy Reen Date: Sun, 4 May 2025 23:21:27 +1000 Subject: [PATCH] Add checkbox for terminal size overlay --- app/qml/SettingsTerminalTab.qml | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) 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 {