mirror of
https://github.com/monero-project/monero-gui.git
synced 2025-01-22 10:44:46 +00:00
lineEdit: add textUpdated signal
This commit is contained in:
parent
de14886376
commit
bded77a22b
1 changed files with 2 additions and 0 deletions
|
@ -39,6 +39,7 @@ Item {
|
|||
property bool error: false
|
||||
signal editingFinished()
|
||||
signal accepted();
|
||||
signal textUpdated();
|
||||
|
||||
height: 37
|
||||
|
||||
|
@ -71,5 +72,6 @@ Item {
|
|||
font.pixelSize: parent.fontSize
|
||||
onEditingFinished: item.editingFinished()
|
||||
onAccepted: item.accepted();
|
||||
onTextChanged: item.textUpdated()
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue