diff --git a/src/renderer/src/components/device/DeviceLEDRing.vue b/src/renderer/src/components/device/DeviceLEDRing.vue index 56d0b0a..5457a07 100644 --- a/src/renderer/src/components/device/DeviceLEDRing.vue +++ b/src/renderer/src/components/device/DeviceLEDRing.vue @@ -24,8 +24,11 @@ diff --git a/src/renderer/src/components/device/DevicePreview.vue b/src/renderer/src/components/device/DevicePreview.vue index 5851239..776a76d 100644 --- a/src/renderer/src/components/device/DevicePreview.vue +++ b/src/renderer/src/components/device/DevicePreview.vue @@ -49,7 +49,7 @@ > midi-logo

- {{ parseInt(barValue - deviceStore.turns * 100) }} + {{ parseInt(barValue + deviceStore.turns * 100) }}

HIGH PASS
@@ -111,7 +111,7 @@ import Color from 'color' const appStore = useAppStore() const deviceStore = useDeviceStore() -const barValue = computed(() => 100 - (deviceStore.angle / Math.PI / 2) * 100) +const barValue = computed(() => 100 + (deviceStore.angle / Math.PI / 2) * 100) const previewDeviceImages = { nanoOne: RenderNanoOne,