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



commit 76571681c1e5f176d694e62b2c38c9f7eba14165
Author: Christian Persch <chpe src gnome org>
Date:   Thu Nov 21 20:52:27 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 b62aa16f..193b3da0 100644
--- a/src/vtedraw.cc
+++ b/src/vtedraw.cc
@@ -982,7 +982,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]