Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 12 additions & 1 deletion app/qml/SettingsTerminalTab.qml
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ ColumnLayout {
}
}
GroupBox {
title: qsTr("Cursor")
title: qsTr("Behavior")
Layout.fillWidth: true
ColumnLayout {
anchors.fill: parent
Expand All @@ -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 {
Expand Down