add spectrum to graphic eq mode

This commit is contained in:
Boof2015
2026-07-28 15:42:57 -04:00
parent f00cd0abcd
commit d4b1a1e122
9 changed files with 194 additions and 37 deletions
+6 -1
View File
@@ -329,7 +329,12 @@ export default function EQScreen() {
// in the tracks' own coordinate space, so it stays glued to the thumbs.
const graphicEditorEl = renderEqGraphics ? (
<View style={styles.graphicEditor}>
<GraphicEQPanel gains={eq.graphicGains} enabled={eq.enabled} onChangeGain={eq.setGraphicGain} />
<GraphicEQPanel
gains={eq.graphicGains}
enabled={eq.enabled}
spectrumActive={scopeActive && focused}
onChangeGain={eq.setGraphicGain}
/>
</View>
) : null;