diff --git a/qml/components/GitCloneHttp.qml b/qml/components/GitCloneHttp.qml index 3d3a42b..d1378f9 100644 --- a/qml/components/GitCloneHttp.qml +++ b/qml/components/GitCloneHttp.qml @@ -30,7 +30,7 @@ Column { verticalAlignment: Text.AlignVCenter width: parent.width placeholderText: "http(s)://" - onContentWidthChanged: repoUrlChanged(repoUrlInput.text) + onTextChanged: repoUrlChanged(repoUrlInput.text) } Rectangle { diff --git a/qml/components/GitCloneHttpAuth.qml b/qml/components/GitCloneHttpAuth.qml index 5503585..a73d674 100644 --- a/qml/components/GitCloneHttpAuth.qml +++ b/qml/components/GitCloneHttpAuth.qml @@ -30,7 +30,7 @@ Column { verticalAlignment: Text.AlignVCenter width: parent.width placeholderText: "http(s)://@" - onContentWidthChanged: repoUrlChanged(repoUrlInput.text) + onTextChanged: repoUrlChanged(repoUrlInput.text) } Text { diff --git a/qml/pages/headers/MainHeader.qml b/qml/pages/headers/MainHeader.qml index 4ca89d2..ec538b5 100644 --- a/qml/pages/headers/MainHeader.qml +++ b/qml/pages/headers/MainHeader.qml @@ -64,7 +64,7 @@ PageHeader { height: units.gu(4) visible: false anchors.verticalCenter: parent.verticalCenter - onContentWidthChanged: searchBarTextChanged(searchBar.text) + onTextChanged: searchBarTextChanged(searchBar.text) } }