mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-19 04:37:51 -06:00
Fix call to translateSettingNames
It's two modules deeper! Bit of weird magic due to how our plug-in import system works. Contributes to issue CURA-844.
This commit is contained in:
parent
51aa82bd6c
commit
a5abfe29cd
1 changed files with 1 additions and 1 deletions
|
@ -51,7 +51,7 @@ class Preferences:
|
|||
visible_settings = self._config.get("machines", "setting_visibility")
|
||||
visible_settings = visible_settings.split(",")
|
||||
import VersionUpgrade21to22 #Import here to prevent a circular dependency.
|
||||
visible_settings = VersionUpgrade21to22.translateSettingNames(visible_settings)
|
||||
VersionUpgrade21to22.VersionUpgrade21to22.VersionUpgrade21to22.translateSettingNames(visible_settings)
|
||||
visible_settings = visible_settings.join(",")
|
||||
self._config.set("machines", "setting_visibility", value = visible_settings)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue