aboutsummaryrefslogtreecommitdiff
path: root/src/App.vue
diff options
context:
space:
mode:
Diffstat (limited to 'src/App.vue')
-rw-r--r--src/App.vue5
1 files changed, 4 insertions, 1 deletions
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(){