Update cursor.js

pull/2/head
Andreas Gysin 2021-05-01 16:02:15 +02:00
rodzic 03224f1ad9
commit 0f1c9337d5
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -14,7 +14,7 @@ export function main(coord, context, cursor, buffer) {
if (coord.x == x && coord.y == y) return '┼'
if (coord.x == x) return '│'
if (coord.y == y) return '─'
return ' '
return (coord.x + coord.y) % 2 ? '·' : ' '
}
import { drawInfo } from '/src/modules/drawbox.js'