From 362b03b2259c8f69ac43b26f5552d66226b4e612 Mon Sep 17 00:00:00 2001 From: Terry Truong Date: Wed, 14 Sep 2022 20:47:07 +1000 Subject: Add missing constraint for auto-mode move-down --- src/App.vue | 5 ++++- src/store.ts | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/App.vue b/src/App.vue index 9e8bd8f..f7ae8c8 100644 --- a/src/App.vue +++ b/src/App.vue @@ -723,6 +723,9 @@ async function autoAction(){ if (node == activeRoot.value || node.parent!.children.length == 1){ actionWeights['move across'] = 0; } + if (node.children.length == 0 || !layoutMap.value.has(node.children[0].name)){ + actionWeights['move down'] = 0; + } if (node == activeRoot.value){ actionWeights['move up'] = 0; } @@ -794,7 +797,7 @@ async function autoAction(){ return; } autoPrevActionFail.value = !success; - setTimeout(autoAction, store.transitionDuration + store.autoActionDelay); + setTimeout(autoAction, action == null ? 0 : store.transitionDuration + store.autoActionDelay); } } function onAutoClose(){ diff --git a/src/store.ts b/src/store.ts index d4f87d3..b882101 100644 --- a/src/store.ts +++ b/src/store.ts @@ -122,7 +122,7 @@ function getDefaultState(): StoreState { clickHoldDuration: 400, // ms transitionDuration: 300, // ms animationDelay: 100, // ms - autoActionDelay: 1000, // ms + autoActionDelay: 500, // ms // Other disableShortcuts: false, autoHide: true, -- cgit v1.2.3