Save VT-100 checkbox state

This commit is contained in:
Alex Spataru 2021-02-16 18:08:54 -05:00
parent f11296c687
commit 0cef1183eb

View File

@ -66,6 +66,7 @@ Control {
Settings { Settings {
property alias echo: echoCheck.checked property alias echo: echoCheck.checked
property alias hex: hexCheckbox.checked property alias hex: hexCheckbox.checked
property alias vt100Enabled: vt100.checked
property alias timestamp: timestampCheck.checked property alias timestamp: timestampCheck.checked
property alias autoscroll: autoscrollCheck.checked property alias autoscroll: autoscrollCheck.checked
property alias lineEnding: lineEndingCombo.currentIndex property alias lineEnding: lineEndingCombo.currentIndex
@ -301,7 +302,7 @@ Control {
} }
CheckBox { CheckBox {
id: filterVt100 id: vt100
text: qsTr("VT-100") text: qsTr("VT-100")
Layout.alignment: Qt.AlignVCenter Layout.alignment: Qt.AlignVCenter
checked: textEdit.vt100emulation checked: textEdit.vt100emulation