Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/PerObjectSettingsTool/SettingPickDialog.qml')
-rw-r--r--plugins/PerObjectSettingsTool/SettingPickDialog.qml7
1 files changed, 2 insertions, 5 deletions
diff --git a/plugins/PerObjectSettingsTool/SettingPickDialog.qml b/plugins/PerObjectSettingsTool/SettingPickDialog.qml
index 4e9295c05a..28ddb7e642 100644
--- a/plugins/PerObjectSettingsTool/SettingPickDialog.qml
+++ b/plugins/PerObjectSettingsTool/SettingPickDialog.qml
@@ -60,16 +60,12 @@ UM.Dialog
CheckBox
{
id: toggleShowAll
-
anchors
{
top: parent.top
right: parent.right
}
-
text: catalog.i18nc("@label:checkbox", "Show all")
- checked: listview.model.showAll
- onClicked: listview.model.showAll = checked
}
ScrollView
@@ -85,7 +81,7 @@ UM.Dialog
}
ListView
{
- id:listview
+ id: listview
model: UM.SettingDefinitionsModel
{
id: definitionsModel
@@ -98,6 +94,7 @@ UM.Dialog
excluded_settings = excluded_settings.concat(settingPickDialog.additional_excluded_settings)
return excluded_settings
}
+ showAll: toggleShowAll.checked || filterInput.text !== ""
}
delegate:Loader
{