点击元素拖动无效bug修复

This commit is contained in:
naibo 2023-11-22 12:59:42 +08:00
parent a2ab4fd9a9
commit 7edb1ec628

View File

@ -438,7 +438,12 @@ function toolBoxKernel(e, para = null) {
title = LANG("移动到", "Move to ");
l = 5;
}
content = para["content"];
try {
content = para["content"];
} catch{
content = LANG("元素", " Element");
}
let str = content.trim();
if (str == "") {
title += LANG("元素", "Element");