Skip to content

Commit ea32fb3

Browse files
committed
Fix effects editors
1 parent a349c02 commit ea32fb3

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

src/plugins/compressoreffectsunit/qml/CompressorEditor.qml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@ ColumnLayout {
3939

4040
RowLayout {
4141
Layout.fillWidth: true
42-
Layout.minimumHeight: 180
43-
Layout.preferredHeight: 180
42+
Layout.minimumHeight: 120
43+
Layout.preferredHeight: 120
4444
spacing: 8
4545

4646
Rectangle {

src/plugins/equalizereffectsunit/internal/EqualizerGraph.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ namespace EqualizerEffectsUnit::Internal {
4646
spectrumLine(createGeometryNode(equalizerSpectrumBinCount,
4747
QSGGeometry::DrawLineStrip)),
4848
responseLine(createGeometryNode(equalizerResponsePointCount,
49-
QSGGeometry::DrawLineStrip, 2.0f)) {
49+
QSGGeometry::DrawLineStrip)) {
5050
appendChildNode(guides);
5151
appendChildNode(spectrumFill);
5252
appendChildNode(spectrumLine);

src/plugins/equalizereffectsunit/qml/EqualizerEditor.qml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,8 @@ ColumnLayout {
6767
id: graphFrame
6868

6969
Layout.fillWidth: true
70-
Layout.minimumHeight: 150
71-
Layout.preferredHeight: 150
70+
Layout.minimumHeight: 120
71+
Layout.preferredHeight: 120
7272
border.color: Theme.borderColor
7373
border.width: 1
7474
clip: true

0 commit comments

Comments
 (0)