send custom commands to daemon

+ status button
requires #1618
This commit is contained in:
Jaquee
2017-01-22 23:04:46 +01:00
parent 2e925b530b
commit ef1d7f92f7
8 changed files with 221 additions and 19 deletions

View File

@@ -38,6 +38,7 @@ Item {
property int fontSize: 18
property bool error: false
signal editingFinished()
signal accepted();
height: 37
@@ -69,5 +70,6 @@ Item {
anchors.rightMargin: 30
font.pixelSize: parent.fontSize
onEditingFinished: item.editingFinished()
onAccepted: item.accepted();
}
}