Add "Smooth Bass" switch to EQ. (Unfinished)
This commit is contained in:
parent
ae737559e5
commit
efa1a85f25
2 changed files with 9 additions and 4 deletions
|
@ -5737,8 +5737,8 @@ body.no-gpu {
|
||||||
.modal-window {
|
.modal-window {
|
||||||
height: 330px;
|
height: 330px;
|
||||||
max-height: 330px;
|
max-height: 330px;
|
||||||
width: 720px;
|
width: 800px;
|
||||||
max-width: 720px;
|
max-width: 800px;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
|
|
||||||
.info-header {
|
.info-header {
|
||||||
|
@ -5790,7 +5790,7 @@ body.no-gpu {
|
||||||
|
|
||||||
.input-container{
|
.input-container{
|
||||||
display: inline-grid;
|
display: inline-grid;
|
||||||
width: 52px;
|
width: 54px;
|
||||||
justify-items: center;
|
justify-items: center;
|
||||||
font-size: 0.7em;
|
font-size: 0.7em;
|
||||||
}
|
}
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
<div class="modal-title">{{$root.getLz('term.equalizer')}}</div>
|
<div class="modal-title">{{$root.getLz('term.equalizer')}}</div>
|
||||||
<button class="close-btn" @click="close()"></button>
|
<button class="close-btn" @click="close()"></button>
|
||||||
<div class="md-option-segment md-option-segment_auto">
|
<div class="md-option-segment md-option-segment_auto">
|
||||||
<select class="md-select" style="width:220px;text-align:center;margin-right:16.75em" v-model="$root.cfg.audio.equalizer.preset" v-on:change="changePreset($root.cfg.audio.equalizer.preset)">
|
<select class="md-select" style="width:220px;text-align:center;margin-right:19.75em" v-model="$root.cfg.audio.equalizer.preset" v-on:change="changePreset($root.cfg.audio.equalizer.preset)">
|
||||||
<optgroup label="User Presets">
|
<optgroup label="User Presets">
|
||||||
<option v-for="preset in $root.cfg.audio.equalizer.presets" :value="preset.preset">{{preset.name}}</option>
|
<option v-for="preset in $root.cfg.audio.equalizer.presets" :value="preset.preset">{{preset.name}}</option>
|
||||||
</optgroup>
|
</optgroup>
|
||||||
|
@ -18,6 +18,11 @@
|
||||||
<div class="modal-content">
|
<div class="modal-content">
|
||||||
<!-- BANDS = [60, 170, 310, 600, 1000, 3000, 6000, 12000, 14000, 16000]; -->
|
<!-- BANDS = [60, 170, 310, 600, 1000, 3000, 6000, 12000, 14000, 16000]; -->
|
||||||
<div class="inputs-container">
|
<div class="inputs-container">
|
||||||
|
<div class="input-container mini">
|
||||||
|
{{$root.cfg.audio.equalizer.smoothbass}}
|
||||||
|
<input tabindex="0" type="range" class="eq-slider mini" orient="vertical" min="-10" max="10" step="1" v-model="$root.cfg.audio.equalizer.smoothbass" @change="changeSmoothBass()">
|
||||||
|
Smooth Bass
|
||||||
|
</div>
|
||||||
<div class="input-container mini">
|
<div class="input-container mini">
|
||||||
<input tabindex="0" type="number" class="eq-freq" orient="vertical" min="-12" max="12" step="0.1" v-model="$root.cfg.audio.equalizer.preamp" @change="changePreamp()">
|
<input tabindex="0" type="number" class="eq-freq" orient="vertical" min="-12" max="12" step="0.1" v-model="$root.cfg.audio.equalizer.preamp" @change="changePreamp()">
|
||||||
<input tabindex="0" type="range" class="eq-slider mini" orient="vertical" min="-12" max="12" step="0.1" v-model="$root.cfg.audio.equalizer.preamp" @change="changePreamp()">
|
<input tabindex="0" type="range" class="eq-slider mini" orient="vertical" min="-12" max="12" step="0.1" v-model="$root.cfg.audio.equalizer.preamp" @change="changePreamp()">
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue