From 53b5b7a5c7a7894c04bdedad345f733be1dd34b7 Mon Sep 17 00:00:00 2001 From: Sander Ferdinand Date: Sun, 21 Jan 2018 19:14:34 +0100 Subject: Fixing the start-up wizards --- components/RemoteNodeEdit.qml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'components/RemoteNodeEdit.qml') diff --git a/components/RemoteNodeEdit.qml b/components/RemoteNodeEdit.qml index 49413436..4d44c156 100644 --- a/components/RemoteNodeEdit.qml +++ b/components/RemoteNodeEdit.qml @@ -40,6 +40,11 @@ GridLayout { property alias daemonAddrLabelText: daemonAddr.labelText property alias daemonPortLabelText: daemonPort.labelText + property string lineEditBorderColor: Qt.rgba(0, 0, 0, 0.15) + property string lineEditBackgroundColor: "white" + property string lineEditFontColor: "black" + property bool lineEditFontBold: true + signal editingFinished() function getAddress() { @@ -51,6 +56,10 @@ GridLayout { Layout.fillWidth: true placeholderText: qsTr("Remote Node Hostname / IP") + translationManager.emptyString onEditingFinished: root.editingFinished() + borderColor: lineEditBorderColor + backgroundColor: lineEditBackgroundColor + fontColor: lineEditFontColor + fontBold: lineEditFontBold } LineEdit { @@ -58,5 +67,10 @@ GridLayout { Layout.fillWidth: true placeholderText: qsTr("Port") + translationManager.emptyString onEditingFinished: root.editingFinished() + + borderColor: lineEditBorderColor + backgroundColor: lineEditBackgroundColor + fontColor: lineEditFontColor + fontBold: lineEditFontBold } } -- cgit v1.2.3