diff options
| author | Sander Ferdinand <sa.ferdinand@gmail.com> | 2018-01-21 19:14:34 +0100 |
|---|---|---|
| committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2018-03-29 23:04:03 +0100 |
| commit | 53b5b7a5c7a7894c04bdedad345f733be1dd34b7 (patch) | |
| tree | 18024138d30690ebeadf2b2f7e8137345244bc63 /components/RemoteNodeEdit.qml | |
| parent | a128581ae503649c8abac60def2a62f05e0e6e6c (diff) | |
| download | monzero-gui-53b5b7a5c7a7894c04bdedad345f733be1dd34b7.tar.gz monzero-gui-53b5b7a5c7a7894c04bdedad345f733be1dd34b7.tar.xz monzero-gui-53b5b7a5c7a7894c04bdedad345f733be1dd34b7.zip | |
Fixing the start-up wizards
Diffstat (limited to 'components/RemoteNodeEdit.qml')
| -rw-r--r-- | components/RemoteNodeEdit.qml | 14 |
1 files changed, 14 insertions, 0 deletions
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 } } |
