feedback: use a smaller diamond to represent an anchor, to not overflow

In the terminal font that I use nowadays (that deals well with
combining characters), the normal diamond exceeded the boundaries
of a single cell and thus partly covered the first character of
the relevant line.
master
Benno Schulenberg 2021-09-19 11:42:35 +02:00
parent 189960c467
commit 239c794503
1 changed files with 1 additions and 1 deletions

View File

@ -2502,7 +2502,7 @@ void draw_row(int row, const char *converted, linestruct *line, size_t from_col)
if (line->has_anchor && (from_col == 0 || !ISSET(SOFTWRAP)))
#ifdef ENABLE_UTF8
if (using_utf8())
wprintw(edit, "\xE2\x97\x86"); /* black diamond */
wprintw(edit, "\xE2\xAC\xA5"); /* black medium diamond */
else
#endif
wprintw(edit, "+");