summaryrefslogtreecommitdiff
path: root/src/minifont.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/minifont.hh')
-rw-r--r--src/minifont.hh3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/minifont.hh b/src/minifont.hh
index cb32f545..a2678425 100644
--- a/src/minifont.hh
+++ b/src/minifont.hh
@@ -37,7 +37,8 @@ public:
unistr_is_local_graphic(vteunistr const c) noexcept
{
/* Box Drawing & Block Elements */
- return ((c >= 0x2500 && c <= 0x259f) ||
+ return ((c >= 0x23b8 && c <= 0x23bd) ||
+ (c >= 0x2500 && c <= 0x259f) ||
(c >= 0x25e2 && c <= 0x25e5) ||
(c >= 0x1fb00 && c <= 0x1fbebf) ||
(c >= 0x1cc00 && c <= 0x1ceaf));