-
Bug
-
Resolution: Fixed
-
P3: Somewhat important
-
6.9.2, 6.10.0 Beta3
-
None
If you run the following example with "-style Fusion" or on a Platform where Fusion is the default style, the scrollbar uses ScrollBar.AlwaysOn but is not visible until you press it. It works with other styles (Basic, Material, FluentWinUI3).
import QtQuick import QtQuick.Controls Window { width: 128 height: 128 visible: true ScrollView { anchors.fill: parent Label { text: "1\n2\n3\n4\n5\n6\n7\n8\n9\n10\n" } ScrollBar.vertical.policy: ScrollBar.AlwaysOn } }