mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-06 22:47:29 -06:00
Use ListView for settings list in post-processing scripts
With the customised scroll bar. Contributes to issue CURA-8686.
This commit is contained in:
parent
954a3cb1db
commit
ca3f29daf7
1 changed files with 103 additions and 105 deletions
|
@ -1,4 +1,4 @@
|
||||||
// Copyright (c) 2015 Jaime van Kessel, Ultimaker B.V.
|
// Copyright (c) 2022 Jaime van Kessel, Ultimaker B.V.
|
||||||
// The PostProcessingPlugin is released under the terms of the AGPLv3 or higher.
|
// The PostProcessingPlugin is released under the terms of the AGPLv3 or higher.
|
||||||
|
|
||||||
import QtQuick 2.2
|
import QtQuick 2.2
|
||||||
|
@ -8,7 +8,7 @@ import QtQuick.Layouts 1.1
|
||||||
import QtQuick.Dialogs 1.1
|
import QtQuick.Dialogs 1.1
|
||||||
import QtQuick.Window 2.2
|
import QtQuick.Window 2.2
|
||||||
|
|
||||||
import UM 1.2 as UM
|
import UM 1.5 as UM
|
||||||
import Cura 1.0 as Cura
|
import Cura 1.0 as Cura
|
||||||
|
|
||||||
UM.Dialog
|
UM.Dialog
|
||||||
|
@ -275,9 +275,9 @@ UM.Dialog
|
||||||
color: UM.Theme.getColor("text")
|
color: UM.Theme.getColor("text")
|
||||||
}
|
}
|
||||||
|
|
||||||
ScrollView
|
ListView
|
||||||
{
|
{
|
||||||
id: scrollView
|
id: listview
|
||||||
anchors
|
anchors
|
||||||
{
|
{
|
||||||
top: scriptSpecsHeader.bottom
|
top: scriptSpecsHeader.bottom
|
||||||
|
@ -288,12 +288,11 @@ UM.Dialog
|
||||||
bottom: parent.bottom
|
bottom: parent.bottom
|
||||||
}
|
}
|
||||||
|
|
||||||
|
ScrollBar.vertical: UM.ScrollBar {}
|
||||||
|
clip: true
|
||||||
visible: manager.selectedScriptDefinitionId != ""
|
visible: manager.selectedScriptDefinitionId != ""
|
||||||
|
|
||||||
ListView
|
|
||||||
{
|
|
||||||
id: listview
|
|
||||||
spacing: UM.Theme.getSize("default_lining").height
|
spacing: UM.Theme.getSize("default_lining").height
|
||||||
|
|
||||||
model: UM.SettingDefinitionsModel
|
model: UM.SettingDefinitionsModel
|
||||||
{
|
{
|
||||||
id: definitionsModel
|
id: definitionsModel
|
||||||
|
@ -305,7 +304,7 @@ UM.Dialog
|
||||||
{
|
{
|
||||||
id: settingLoader
|
id: settingLoader
|
||||||
|
|
||||||
width: parent.width
|
width: listview.width
|
||||||
height:
|
height:
|
||||||
{
|
{
|
||||||
if(provider.properties.enabled == "True")
|
if(provider.properties.enabled == "True")
|
||||||
|
@ -408,7 +407,6 @@ UM.Dialog
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
Cura.PrintSetupTooltip
|
Cura.PrintSetupTooltip
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue