From 0cef1183ebca14b9b19d8ac1ae41d0bc92c7e938 Mon Sep 17 00:00:00 2001 From: Alex Spataru Date: Tue, 16 Feb 2021 18:08:54 -0500 Subject: [PATCH] Save VT-100 checkbox state --- assets/qml/Windows/Console.qml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/assets/qml/Windows/Console.qml b/assets/qml/Windows/Console.qml index 3e8d024d..f911f242 100644 --- a/assets/qml/Windows/Console.qml +++ b/assets/qml/Windows/Console.qml @@ -66,6 +66,7 @@ Control { Settings { property alias echo: echoCheck.checked property alias hex: hexCheckbox.checked + property alias vt100Enabled: vt100.checked property alias timestamp: timestampCheck.checked property alias autoscroll: autoscrollCheck.checked property alias lineEnding: lineEndingCombo.currentIndex @@ -301,7 +302,7 @@ Control { } CheckBox { - id: filterVt100 + id: vt100 text: qsTr("VT-100") Layout.alignment: Qt.AlignVCenter checked: textEdit.vt100emulation