Есть TabBar с несколькими TabButton. В документации написано, что при превышении кнопками размеров TabBar включается режим flickable.
У меня ширина кнопок меньше чем у TabBar, но они все равно прокручиваются. Можно ли заблокировать flickable?
Код:
TabBar {
id: barProperties
Layout.minimumWidth: 410
Layout.fillWidth: true
// width: 410
currentIndex: stackLayout.currentIndex
TabButton {
text: qsTr("Main")
width: 100
}
TabButton {
text: qsTr("Words")
width: 100
}
TabButton {
text: qsTr("Misc")
width: 100
}
TabButton {
text: qsTr("Vibro")
width: 100
}
} //TabBar