summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2015-03-11 16:30:19 -0400
committerMatthias Clasen <mclasen@redhat.com>2015-03-11 16:30:39 -0400
commit390e77d90dbabfb327b736ab6e7b31121c8ecf69 (patch)
tree533634cb43a25761fc2159562f60bc0160925253
parent31a337f1397cf71c8d92824dafdcb91cd21dbb33 (diff)
downloadgtk+-wip/matthiasc/font-features.tar.gz
Update for latest Pango changeswip/matthiasc/font-features
The attribute name has been shortened from font_feature_settings to font_features.
-rw-r--r--demos/font-features/font-features.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/demos/font-features/font-features.c b/demos/font-features/font-features.c
index 26679fb4fb..4bf16666e0 100644
--- a/demos/font-features/font-features.c
+++ b/demos/font-features/font-features.c
@@ -63,7 +63,7 @@ update (void)
gtk_label_set_text (GTK_LABEL (settings), font_settings);
s = g_string_new ("");
- g_string_append_printf (s, "<span font_desc='%s' font_feature_settings='%s'>%s</span>", font_desc, font_settings, text);
+ g_string_append_printf (s, "<span font_desc='%s' font_features='%s'>%s</span>", font_desc, font_settings, text);
gtk_label_set_markup (GTK_LABEL (label), s->str);