`oh-knob`: Fix `releaseOnly` not working (#1893)
Regression from #1875. -- Signed-off-by: Florian Hotze <florianh_dev@icloud.com>pull/1904/head
parent
55c72349e8
commit
388bedf1ff
|
@ -1,5 +1,6 @@
|
|||
<template>
|
||||
<round-slider v-bind="resolvedConfig" :value="computedValue" :style="`stroke-dasharray: ${(config.dottedPath) ? config.dottedPath : 0}`" mouseScrollAction="true" @input="onChange" />
|
||||
<round-slider v-bind="resolvedConfig" :value="computedValue" :style="`stroke-dasharray: ${(config.dottedPath) ? config.dottedPath : 0}`" mouseScrollAction="true"
|
||||
@input="onChange" @click.native.stop="sendCommandDebounced(value, true)" @touchend.native.stop="sendCommandDebounced(value, true)" />
|
||||
</template>
|
||||
|
||||
<script>
|
||||
|
|
Loading…
Reference in New Issue