1
0
mirror of https://github.com/QRouland/UTPass.git synced 2025-06-25 06:52:28 +00:00

Fix issue where textfield used wrong signals

This commit is contained in:
2025-02-07 14:17:14 +01:00
parent 6fe50d2c90
commit c6f2424017
3 changed files with 3 additions and 3 deletions

View File

@ -30,7 +30,7 @@ Column {
verticalAlignment: Text.AlignVCenter
width: parent.width
placeholderText: "http(s)://<hostname>"
onContentWidthChanged: repoUrlChanged(repoUrlInput.text)
onTextChanged: repoUrlChanged(repoUrlInput.text)
}
Rectangle {

View File

@ -30,7 +30,7 @@ Column {
verticalAlignment: Text.AlignVCenter
width: parent.width
placeholderText: "http(s)://<username>@<hostname>"
onContentWidthChanged: repoUrlChanged(repoUrlInput.text)
onTextChanged: repoUrlChanged(repoUrlInput.text)
}
Text {