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:
authorcasper <c.lamboo@ultimaker.com>2022-02-04 12:33:38 +0300
committercasper <c.lamboo@ultimaker.com>2022-02-04 12:33:38 +0300
commitfc633b8769daf34967d9153ce5b3df4cccea17e9 (patch)
tree36ce6605b0e17803fa696e7cff5af53fecd057e0
parent268d16ca34421494aae575306458f5aed122a03a (diff)
Fix show hidden settings
-rw-r--r--resources/qml/Settings/SettingView.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/resources/qml/Settings/SettingView.qml b/resources/qml/Settings/SettingView.qml
index 657edd8259..9d8916f8f4 100644
--- a/resources/qml/Settings/SettingView.qml
+++ b/resources/qml/Settings/SettingView.qml
@@ -340,7 +340,7 @@ Item
}
function onShowTooltip(text) { base.showTooltip(delegate, Qt.point(-settingsView.x - UM.Theme.getSize("default_margin").width, 0), text) }
function onHideTooltip() { base.hideTooltip() }
- function onShowAllHiddenInheritedSettings()
+ function onShowAllHiddenInheritedSettings(category_id)
{
var children_with_override = Cura.SettingInheritanceManager.getChildrenKeysWithOverride(category_id)
for(var i = 0; i < children_with_override.length; i++)