You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
val localeEnum by owner.setting("Locale", FormatterConfig.Locales.US, "The regional formatting used for numbers", vis).group(*baseGroup)
37
+
val localeEnum by owner.setting("Locale", FormatterConfig.Locales.US, "The regional formatting used for numbers").group(baseGroup).index()
39
38
overrideval locale get() = localeEnum.locale
40
39
41
-
val sep by owner.setting("Separator", FormatterConfig.TupleSeparator.Comma, "Separator for string serialization of tuple data structures", vis).group(*baseGroup)
42
-
val customSep by owner.setting("Custom Separator", "") { vis() &&sep ==FormatterConfig.TupleSeparator.Custom }.group(*baseGroup)
40
+
val sep by owner.setting("Separator", FormatterConfig.TupleSeparator.Comma, "Separator for string serialization of tuple data structures").group(baseGroup).index()
41
+
val customSep by owner.setting("Custom Separator", "") { sep ==FormatterConfig.TupleSeparator.Custom }.group(baseGroup).index()
0 commit comments