mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-15 18:57:52 -06:00
Fix joining strings on comma
The call worked a bit differently. Contributes to issue CURA-844.
This commit is contained in:
parent
a5abfe29cd
commit
20d776c0d4
1 changed files with 1 additions and 1 deletions
|
@ -52,7 +52,7 @@ class Preferences:
|
|||
visible_settings = visible_settings.split(",")
|
||||
import VersionUpgrade21to22 #Import here to prevent a circular dependency.
|
||||
VersionUpgrade21to22.VersionUpgrade21to22.VersionUpgrade21to22.translateSettingNames(visible_settings)
|
||||
visible_settings = visible_settings.join(",")
|
||||
visible_settings = ",".join(visible_settings)
|
||||
self._config.set("machines", "setting_visibility", value = visible_settings)
|
||||
|
||||
#Update the version number itself.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue