Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
GNOME
pango
Commits
1b73b50a
Commit
1b73b50a
authored
Nov 24, 2021
by
Matthias Clasen
Browse files
Fix visible space handling
Make space actually show up as visible space when we want that.
parent
55efd092
Changes
1
Hide whitespace changes
Inline
Side-by-side
pango/shape.c
View file @
1b73b50a
...
...
@@ -102,10 +102,12 @@ pango_hb_font_get_nominal_glyph (hb_font_t *font,
* don't draw a hex box for 0x20
*/
if
(
unicode
==
0x20
)
*
glyph
=
PANGO_GET_UNKNOWN_GLYPH
(
0x2423
)
;
unicode
=
0x2423
;
else
*
glyph
=
PANGO_GET_UNKNOWN_GLYPH
(
unicode
);
return
TRUE
;
{
*
glyph
=
PANGO_GET_UNKNOWN_GLYPH
(
unicode
);
return
TRUE
;
}
}
if
((
context
->
show_flags
&
PANGO_SHOW_IGNORABLES
)
!=
0
&&
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment