diff options
| author | xiphon <xiphon@protonmail.com> | 2021-04-02 16:42:52 +0000 |
|---|---|---|
| committer | xiphon <xiphon@protonmail.com> | 2021-04-02 16:42:52 +0000 |
| commit | ecc8b8cc994736d23a96004cddbc40002db68a30 (patch) | |
| tree | 1f3c07ecd1ebbfc16f86df02545907ba8cf2b229 /components | |
| parent | 34df4e74d4c75f53d0a05ad9e75cf494e9f7134a (diff) | |
| download | monzero-gui-ecc8b8cc994736d23a96004cddbc40002db68a30.tar.gz monzero-gui-ecc8b8cc994736d23a96004cddbc40002db68a30.tar.xz monzero-gui-ecc8b8cc994736d23a96004cddbc40002db68a30.zip | |
RemoteNodeEdit: change border color on focus
Diffstat (limited to 'components')
| -rw-r--r-- | components/RemoteNodeEdit.qml | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/components/RemoteNodeEdit.qml b/components/RemoteNodeEdit.qml index 6dcd617b..75ee8139 100644 --- a/components/RemoteNodeEdit.qml +++ b/components/RemoteNodeEdit.qml @@ -56,7 +56,6 @@ GridLayout { property int labelFontSize: 14 property string lineEditBackgroundColor: "transparent" - property string lineEditBorderColor: MoneroComponents.Style.inputBorderColorInActive property string lineEditFontColor: MoneroComponents.Style.defaultFontColor property bool lineEditFontBold: false property int lineEditFontSize: 15 @@ -67,6 +66,8 @@ GridLayout { signal editingFinished() signal textChanged() + onActiveFocusChanged: activeFocus && daemonAddr.forceActiveFocus() + function isValid() { return daemonAddr.text.trim().length > 0 && daemonPort.acceptableInput } @@ -92,7 +93,6 @@ GridLayout { placeholderColor: root.placeholderColor placeholderOpacity: root.placeholderOpacity labelFontSize: root.labelFontSize - borderColor: lineEditBorderColor backgroundColor: lineEditBackgroundColor fontColor: lineEditFontColor fontBold: lineEditFontBold @@ -115,7 +115,6 @@ GridLayout { placeholderColor: root.placeholderColor placeholderOpacity: root.placeholderOpacity labelFontSize: root.labelFontSize - borderColor: lineEditBorderColor backgroundColor: lineEditBackgroundColor fontColor: lineEditFontColor fontBold: lineEditFontBold |
