[vte/wip/mosaic: 35/35] draw: Narrow the range of characters in the U+1FBxx block



commit 39dfaa4453ad066ca7d4f2d3e38b363c0e9ebf28
Author: Christian Persch <chpe src gnome org>
Date:   Mon Nov 18 23:26:55 2019 +0100

    draw: Narrow the range of characters in the U+1FBxx block
    
    Don't include unallocated characters, and also exclude the 7-segment
    numbers which can be drawn just fine using a font.

 src/vtedraw.cc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/src/vtedraw.cc b/src/vtedraw.cc
index c693a13d..e70e3e43 100644
--- a/src/vtedraw.cc
+++ b/src/vtedraw.cc
@@ -983,7 +983,7 @@ _vte_draw_unichar_is_local_graphic(vteunistr c)
         return ((c >=  0x2500 && c <=  0x259f) ||
                 (c >=  0x25e2 && c <=  0x25e5)
 #ifdef WITH_UNICODE_NEXT
-                || (c >= 0x1fb00 && c <= 0x1fbff)
+                || (c >= 0x1fb00 && c <= 0x1fbca)
 #endif
                 );
 }


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]