aboutsummaryrefslogtreecommitdiff
path: root/components
diff options
context:
space:
mode:
authorxiphon <xiphon@protonmail.com>2021-04-02 16:42:52 +0000
committerxiphon <xiphon@protonmail.com>2021-04-02 16:42:52 +0000
commitecc8b8cc994736d23a96004cddbc40002db68a30 (patch)
tree1f3c07ecd1ebbfc16f86df02545907ba8cf2b229 /components
parent34df4e74d4c75f53d0a05ad9e75cf494e9f7134a (diff)
downloadmonzero-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.qml5
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