Skip to content

Commit 687fe22

Browse files
committed
fixed basic eq width screwing up on macOS 10.12
1 parent 7b69dd4 commit 687fe22

2 files changed

Lines changed: 4 additions & 7 deletions

File tree

ui/src/app/sections/effects/equalizers/equalizers.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
></eqm-equalizer-presets>
4646
</div>
4747
<eqm-loading *ngIf="!loaded"></eqm-loading>
48-
<eqm-basic-equalizer fxFill *ngIf="loaded && type === 'Basic'" #basicEqualizer
48+
<eqm-basic-equalizer *ngIf="loaded && type === 'Basic'" #basicEqualizer
4949
[enabled]="enabled" class="equalizer"
5050
(presetsChange)="presets = $event" (selectedPresetChange)="selectedPreset = $event"
5151
[animationDuration]="animationDuration" [animationFps]="animationFps"

ui/src/app/sections/effects/equalizers/equalizers.component.scss

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,9 @@
1616
width: 95%;
1717
}
1818

19-
.equalizers {
20-
// min-height: 143px !important;
21-
22-
.equalizer {
23-
width: 100%;
24-
}
19+
.equalizer {
20+
width: 100%;
2521
}
22+
2623

2724
}

0 commit comments

Comments
 (0)