fixed bug in manual pick

This commit is contained in:
PROFERIS - Mi³osz Stocki
2026-07-15 14:23:40 +02:00
parent a469f01a32
commit 949c3bd5f5
+1 -1
View File
@@ -470,7 +470,7 @@ export default {
const y = bounds.yMax - (yClick / rect.height) * h; const y = bounds.yMax - (yClick / rect.height) * h;
const check = IK.checkWorkspace(x, y); const check = IK.checkWorkspace(x, y);
if (!check.valid) { if (!check.ok) {
UI.log(check.reason, 'warning'); UI.log(check.reason, 'warning');
return; return;
} }