summarylogtreecommitdiffstats
path: root/multi.patch
diff options
context:
space:
mode:
authorTheAifam52016-11-19 15:35:13 +0100
committerTheAifam52016-11-19 15:35:13 +0100
commited5be42c7ea4aba35fb32d2638ffa10104179ec8 (patch)
tree1ca41b7ff5ca6f6f8c65717cfb165ae030472b9d /multi.patch
parent6c457fee8b7a9f188d9e377db6d02ee3b58d453e (diff)
downloadaur-ed5be42c7ea4aba35fb32d2638ffa10104179ec8.tar.gz
Reenabled normal glyphs for shades
Commit from: https://github.com/eelfroth/vte-ng/commit/02623eb88a98789a941b2db64a82092cab1999c3
Diffstat (limited to 'multi.patch')
-rw-r--r--multi.patch12
1 files changed, 12 insertions, 0 deletions
diff --git a/multi.patch b/multi.patch
index c00ecf571262..42ad45ed4579 100644
--- a/multi.patch
+++ b/multi.patch
@@ -1,3 +1,15 @@
+diff -ruN orig/src/vtedraw.cc new/src/vtedraw.cc
+--- orig/src/vtedraw.cc 2016-09-22 21:29:28.000000000 +0200
++++ new/src/vtedraw.cc 2016-10-22 19:23:31.706230944 +0200
+@@ -936,7 +936,7 @@ static gboolean
+ _vte_draw_unichar_is_local_graphic(vteunistr c)
+ {
+ /* Box Drawing & Block Elements */
+- return (c >= 0x2500) && (c <= 0x259f);
++ return (c >= 0x2500) && (c <= 0x259f) && !((c >= 0x2591) && (c <= 0x2593));
+ }
+
+ #include "box_drawing.h"
diff -ruN orig/doc/reference/vte-sections.txt new/doc/reference/vte-sections.txt
--- orig/doc/reference/vte-sections.txt 2016-09-22 21:29:28.000000000 +0200
+++ new/doc/reference/vte-sections.txt 2016-10-22 19:23:31.705230952 +0200