Skip to content

Commit

Permalink
fix(qml): Use new filter COs to fix deprecation warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
Holzhaus committed Feb 17, 2024
1 parent ea59bac commit 7e09c58
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions res/qml/WaveformShader.qml
Original file line number Diff line number Diff line change
Expand Up @@ -41,43 +41,43 @@ ShaderEffect {
Mixxx.ControlProxy {
id: filterHighControl

group: root.group
key: "filterHigh"
group: "[EqualizerRack1_" + root.group + "_Effect1]"
key: "parameter3"
}

Mixxx.ControlProxy {
id: filterHighKillControl

group: root.group
key: "filterHighKill"
group: "[EqualizerRack1_" + root.group + "_Effect1]"
key: "button_parameter3"
}

Mixxx.ControlProxy {
id: filterMidControl

group: root.group
key: "filterMid"
group: "[EqualizerRack1_" + root.group + "_Effect1]"
key: "parameter2"
}

Mixxx.ControlProxy {
id: filterMidKillControl

group: root.group
key: "filterMidKill"
group: "[EqualizerRack1_" + root.group + "_Effect1]"
key: "button_parameter2"
}

Mixxx.ControlProxy {
id: filterLowControl

group: root.group
key: "filterLow"
group: "[EqualizerRack1_" + root.group + "_Effect1]"
key: "parameter1"
}

Mixxx.ControlProxy {
id: filterLowKillControl

group: root.group
key: "filterLowKill"
group: "[EqualizerRack1_" + root.group + "_Effect1]"
key: "button_parameter1"
}

waveformTexture: Image {
Expand Down

0 comments on commit 7e09c58

Please sign in to comment.