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 5c6a859 commit 5457416Copy full SHA for 5457416
Cookbook/CookbookCommon/Sources/CookbookCommon/Recipes/MiniApps/InstrumentSFZ.swift
@@ -39,9 +39,8 @@ struct InstrumentSFZView: View {
39
40
var body: some View {
41
let instrumentParams = conductor.instrument.parameters
42
- let instrumentParamsSorted = instrumentParams.sorted(by: {$0.def.name < $1.def.name} )
43
let paramsPerLine = horizontalSizeClass == .compact ? 6 : 8
44
- let instrumentParamsChunked = instrumentParamsSorted.chunked(into: paramsPerLine)
+ let instrumentParamsChunked = instrumentParams.chunked(into: paramsPerLine)
45
46
GeometryReader { geoProxy in
47
VStack {
0 commit comments