We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 52988de commit 0c2942fCopy full SHA for 0c2942f
Cookbook/CookbookCommon/Sources/CookbookCommon/Reusable Components/ParameterRow.swift
@@ -58,7 +58,7 @@ public struct ParameterRow: View {
58
case .boolean:
59
Toggle("", isOn: Binding(get: { param.value == 1.0 }, set: {
60
param.value = $0 ? 1.0 : 0.0; refresher.version += 1
61
- }))
+ })).labelsHidden()
62
case .indexed:
63
if param.range.upperBound - param.range.lowerBound < 5 {
64
Picker(param.def.name, selection: getIntBinding()) {
0 commit comments