mirror of
https://git.freebsd.org/ports.git
synced 2025-06-20 12:10:31 -04:00
Ly by default when not running on linux uses ugly ascii art instead of nice drawing on the console, now FreeBSD also have the nice drawing
11 lines
350 B
C
11 lines
350 B
C
--- src/draw.c.orig 2022-02-04 14:30:20 UTC
|
|
+++ src/draw.c
|
|
@@ -47,7 +47,7 @@ void draw_init(struct term_buf* buf)
|
|
+ (config.input_len + 1)
|
|
+ buf->labels_max_len;
|
|
|
|
-#if defined(__linux__)
|
|
+#if defined(__linux__) || defined(__FreeBSD__)
|
|
buf->box_chars.left_up = 0x250c;
|
|
buf->box_chars.left_down = 0x2514;
|
|
buf->box_chars.right_up = 0x2510;
|