mirror of
https://github.com/kaythomas0/noisedash.git
synced 2025-11-15 04:38:00 +00:00
Move delete sample icon, fix sporadic bug
This commit is contained in:
@@ -652,20 +652,26 @@
|
|||||||
<v-row
|
<v-row
|
||||||
justify="center"
|
justify="center"
|
||||||
>
|
>
|
||||||
<h2 class="mb-5">
|
<v-col />
|
||||||
{{ sample.name }}
|
|
||||||
</h2>
|
<v-col>
|
||||||
|
<h2 class="mb-5">
|
||||||
|
{{ sample.name }}
|
||||||
|
</h2>
|
||||||
|
</v-col>
|
||||||
|
|
||||||
|
<v-col>
|
||||||
|
<v-btn
|
||||||
|
icon
|
||||||
|
:disabled="playDisabled"
|
||||||
|
@click="removeSample(index)"
|
||||||
|
>
|
||||||
|
<v-icon>mdi-delete</v-icon>
|
||||||
|
</v-btn>
|
||||||
|
</v-col>
|
||||||
</v-row>
|
</v-row>
|
||||||
|
|
||||||
<v-row>
|
<v-row>
|
||||||
<v-btn
|
|
||||||
icon
|
|
||||||
:disabled="playDisabled"
|
|
||||||
@click="removeSample(index)"
|
|
||||||
>
|
|
||||||
<v-icon>mdi-delete</v-icon>
|
|
||||||
</v-btn>
|
|
||||||
|
|
||||||
<v-slider
|
<v-slider
|
||||||
v-model="sample.volume"
|
v-model="sample.volume"
|
||||||
label="Volume"
|
label="Volume"
|
||||||
|
|||||||
@@ -521,6 +521,8 @@ export default {
|
|||||||
this.checkedSamples.forEach(i => {
|
this.checkedSamples.forEach(i => {
|
||||||
const load = this.allSamples.find(e => e.id === i)
|
const load = this.allSamples.find(e => e.id === i)
|
||||||
load.volume = -10
|
load.volume = -10
|
||||||
|
load.sporadicMin = 30
|
||||||
|
load.sporadicMax = 300
|
||||||
this.loadedSamples.push(load)
|
this.loadedSamples.push(load)
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user