From 92857ff0e416686544369caaf6b341598d0faee0 Mon Sep 17 00:00:00 2001 From: Robert Kossessa Date: Thu, 30 May 2024 12:52:46 +0200 Subject: [PATCH] UPD: Hide WIP value types --- src/renderer/src/components/config/values/ValueCard.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/renderer/src/components/config/values/ValueCard.vue b/src/renderer/src/components/config/values/ValueCard.vue index 5889374..9fb861a 100644 --- a/src/renderer/src/components/config/values/ValueCard.vue +++ b/src/renderer/src/components/config/values/ValueCard.vue @@ -155,10 +155,10 @@ const props = defineProps({ }) const valueTypeOptions = ref({ - mouse: { label: 'Move or Scroll the Mouse', component: 'ControlMouseValue' }, - gamepad: { label: 'Control a Gamepad Axis', component: 'ControlGamepadValue' }, + // mouse: { label: 'Move or Scroll the Mouse', component: 'ControlMouseValue' }, + // gamepad: { label: 'Control a Gamepad Axis', component: 'ControlGamepadValue' }, midi: { label: 'Control a MIDI CC Value', component: ControlMidiValue }, - action: { label: 'Trigger Actions on Rotation', component: TriggerActionsValue }, + // action: { label: 'Trigger Actions on Rotation', component: TriggerActionsValue }, profiles: { label: 'Switch Profiles', component: 'SwitchProfilesValue' } })