From b34d5409e644567d86af23a8725125bdab0ad071 Mon Sep 17 00:00:00 2001 From: xiphon Date: Sat, 10 Nov 2018 23:16:27 +0000 Subject: [PATCH] components: RemoteNodeEdit validate port number range --- components/RemoteNodeEdit.qml | 1 + 1 file changed, 1 insertion(+) diff --git a/components/RemoteNodeEdit.qml b/components/RemoteNodeEdit.qml index 4b003969..314cb45d 100644 --- a/components/RemoteNodeEdit.qml +++ b/components/RemoteNodeEdit.qml @@ -96,6 +96,7 @@ GridLayout { fontColor: lineEditFontColor fontBold: lineEditFontBold fontSize: lineEditFontSize + validator: IntValidator{bottom: 1; top: 65535;} onEditingFinished: root.editingFinished() }