Can't set focus to ScrollView using Qt.ClickFocus
Unsolved
QML and Qt Quick
-
Hey there. I just want my TextField to lose focus when i click on ScrollView, but the problem is scrollview does not accept the focus using Qt.ClickFocus
import QtQuick import QtQuick.Controls.Universal ApplicationWindow { visible: true width: 600 height: 400 ScrollView { anchors.fill: parent focusPolicy: Qt.ClickFocus TextField { id: textField implicitWidth: 400 implicitHeight: 50 } } }
is this a freaking bug?