mirror of
https://github.com/QRouland/UTPass.git
synced 2025-02-24 12:14:57 +00:00
Fix issue where textfield used wrong signals
This commit is contained in:
parent
6fe50d2c90
commit
c6f2424017
@ -30,7 +30,7 @@ Column {
|
|||||||
verticalAlignment: Text.AlignVCenter
|
verticalAlignment: Text.AlignVCenter
|
||||||
width: parent.width
|
width: parent.width
|
||||||
placeholderText: "http(s)://<hostname>"
|
placeholderText: "http(s)://<hostname>"
|
||||||
onContentWidthChanged: repoUrlChanged(repoUrlInput.text)
|
onTextChanged: repoUrlChanged(repoUrlInput.text)
|
||||||
}
|
}
|
||||||
|
|
||||||
Rectangle {
|
Rectangle {
|
||||||
|
@ -30,7 +30,7 @@ Column {
|
|||||||
verticalAlignment: Text.AlignVCenter
|
verticalAlignment: Text.AlignVCenter
|
||||||
width: parent.width
|
width: parent.width
|
||||||
placeholderText: "http(s)://<username>@<hostname>"
|
placeholderText: "http(s)://<username>@<hostname>"
|
||||||
onContentWidthChanged: repoUrlChanged(repoUrlInput.text)
|
onTextChanged: repoUrlChanged(repoUrlInput.text)
|
||||||
}
|
}
|
||||||
|
|
||||||
Text {
|
Text {
|
||||||
|
@ -64,7 +64,7 @@ PageHeader {
|
|||||||
height: units.gu(4)
|
height: units.gu(4)
|
||||||
visible: false
|
visible: false
|
||||||
anchors.verticalCenter: parent.verticalCenter
|
anchors.verticalCenter: parent.verticalCenter
|
||||||
onContentWidthChanged: searchBarTextChanged(searchBar.text)
|
onTextChanged: searchBarTextChanged(searchBar.text)
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user