From 949c3bd5f5aeb095f704706a640c699e9f31bd15 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?PROFERIS=20-=20Mi=C2=B3osz=20Stocki?= Date: Wed, 15 Jul 2026 14:23:40 +0200 Subject: [PATCH] fixed bug in manual pick --- web/js/sections/board-control.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/js/sections/board-control.js b/web/js/sections/board-control.js index ccb747a..57813c9 100644 --- a/web/js/sections/board-control.js +++ b/web/js/sections/board-control.js @@ -470,7 +470,7 @@ export default { const y = bounds.yMax - (yClick / rect.height) * h; const check = IK.checkWorkspace(x, y); - if (!check.valid) { + if (!check.ok) { UI.log(check.reason, 'warning'); return; }