Skip to content
This repository has been archived by the owner on May 3, 2019. It is now read-only.

Commit

Permalink
Fix service setting url not updated when clicking on another service
Browse files Browse the repository at this point in the history
Close #210
  • Loading branch information
ColinDuquesnoy committed Feb 27, 2018
1 parent d393a9c commit b19d27e
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions src/imports/MellowPlayer/Delegates/TextFieldDelegate.qml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ ItemDelegate {
id: root

property string label: ""
property string value: ""
property alias value: textField.text
property int textFieldPreferredWidth: 320

hoverEnabled: true
Expand All @@ -27,11 +27,10 @@ ItemDelegate {
}

TextField {
id: textField

enabled: root.enabled
selectByMouse: true
text: root.value

onTextChanged: root.value = text;

Layout.preferredWidth: root.textFieldPreferredWidth
}
Expand Down

0 comments on commit b19d27e

Please sign in to comment.