#Blackboard, Text Coordinate Bug

2 messages ยท Page 1 of 1 (latest)

limpid root
#

The blackboard only seems to accept coordinates up to (9,9) when sending pixel coordinates. Anything beyond that causes this odd pattern to show up.

limpid root
#

Found the fix, replacing ```java
private final Pattern PATTERN = Pattern.compile("\((\d),(\d)\)->(\S+)");

on line 541 of `CreateCompatImpl.java` with ```java
        private final Pattern PATTERN = Pattern.compile("\\((\\d+),(\\d+)\\)->(\\S+)");

should fix it.