mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-08-13 08:48:58 +08:00
Merge pull request #4186 from Ultimaker/toolbox_development
Continue scrolling over compatibility charts
This commit is contained in:
commit
a67fbc5b89
@ -29,6 +29,16 @@ Item
|
|||||||
anchors.topMargin: UM.Theme.getSize("default_margin").height
|
anchors.topMargin: UM.Theme.getSize("default_margin").height
|
||||||
width: parent.width
|
width: parent.width
|
||||||
frameVisible: false
|
frameVisible: false
|
||||||
|
|
||||||
|
// Workaround for scroll issues (QTBUG-49652)
|
||||||
|
flickableItem.interactive: false
|
||||||
|
Component.onCompleted:
|
||||||
|
{
|
||||||
|
for (var i = 0; i < flickableItem.children.length; ++i)
|
||||||
|
{
|
||||||
|
flickableItem.children[i].enabled = false
|
||||||
|
}
|
||||||
|
}
|
||||||
selectionMode: 0
|
selectionMode: 0
|
||||||
model: packageData.supported_configs
|
model: packageData.supported_configs
|
||||||
headerDelegate: Rectangle
|
headerDelegate: Rectangle
|
||||||
|
Loading…
x
Reference in New Issue
Block a user