修复ui.click.target的targetprompt有问题
This commit is contained in:
parent
5c2dff7c1a
commit
dd1e1be6e8
|
@ -2843,10 +2843,20 @@ export class Click {
|
||||||
}
|
}
|
||||||
if (targetprompt) {
|
if (targetprompt) {
|
||||||
if (Array.isArray(targetprompt)) {
|
if (Array.isArray(targetprompt)) {
|
||||||
targetprompt =
|
const targets = ui.selected.targets.slice();
|
||||||
targetprompt[
|
let index = ui.selected.targets.indexOf(this);
|
||||||
Math.min(targetprompt.length - 1, ui.selected.targets.indexOf(this))
|
for (let i = 0; i < targetprompt.length; i++) {
|
||||||
];
|
const target = targets.find(
|
||||||
|
(cur) => cur.node.prompt && cur.node.prompt.innerText === targetprompt[i]
|
||||||
|
);
|
||||||
|
if (target) {
|
||||||
|
targets.remove(target);
|
||||||
|
} else {
|
||||||
|
index = i;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
targetprompt = targetprompt[Math.min(targetprompt.length - 1, index)];
|
||||||
} else if (typeof targetprompt == "function") {
|
} else if (typeof targetprompt == "function") {
|
||||||
targetprompt = targetprompt(this);
|
targetprompt = targetprompt(this);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue