summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2019-07-07 14:07:31 -0400
committerMatthias Clasen <mclasen@redhat.com>2019-07-12 18:23:03 -0400
commitafb30e880903e0d82e87277c0e92e7939e2d1946 (patch)
tree2519433b014eb146ce8db3bc15d699e6dfa53775
parent3523f69ebedf3b4c976973137b29ece475a84dfa (diff)
downloadpango-afb30e880903e0d82e87277c0e92e7939e2d1946.tar.gz
Add a shape flag for showing ignorables
-rw-r--r--pango/pango-glyph.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/pango/pango-glyph.h b/pango/pango-glyph.h
index b3112e06..7361d507 100644
--- a/pango/pango-glyph.h
+++ b/pango/pango-glyph.h
@@ -209,7 +209,8 @@ void pango_shape_full (const gchar *item_text,
PangoGlyphString *glyphs);
typedef enum {
- PANGO_SHAPE_NONE,
+ PANGO_SHAPE_NONE = 0,
+ PANGO_SHAPE_SHOW_IGNORABLES = 1 << 0,
} PangoShapeFlags;
PANGO_AVAILABLE_IN_1_44