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:
authorJaime van Kessel <nallath@gmail.com>2022-02-08 13:49:04 +0300
committerGitHub <noreply@github.com>2022-02-08 13:49:04 +0300
commit930b3daf370369a3f2b93f30839b209a19e75ec7 (patch)
tree9b2d25c8e981bab077e0ad0a42689e39865bb231
parent31225d5b32c0b66244697636a250bfafea002ad2 (diff)
parentfc633b8769daf34967d9153ce5b3df4cccea17e9 (diff)
Merge pull request #11415 from Ultimaker/fix_show_hidden_settings
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++)