diff options
author | raveit65 <[email protected]> | 2017-03-08 13:24:04 +0100 |
---|---|---|
committer | raveit65 <[email protected]> | 2017-03-08 16:08:00 +0100 |
commit | adff2474297f0153bd5f06b9e89b7674eaef7435 (patch) | |
tree | 5bc4a9dfb1e1647de9dff9c3418bac27793378ad /font-viewer/sushi-font-widget.c | |
parent | cc55fabbf675e4f4b8c79d8be1ab3cb5c503f907 (diff) | |
download | mate-control-center-adff2474297f0153bd5f06b9e89b7674eaef7435.tar.bz2 mate-control-center-adff2474297f0153bd5f06b9e89b7674eaef7435.tar.xz |
sushi-font-loader: Add face_index argument
sushi_new_ft_face_from_uri{,_async}() now takes face index as the third
argument. All callers changed.
https://bugzilla.gnome.org/show_bug.cgi?id=752005
taken from:
https://git.gnome.org/browse/gnome-font-viewer/commit/?id=28bab70
Diffstat (limited to 'font-viewer/sushi-font-widget.c')
-rw-r--r-- | font-viewer/sushi-font-widget.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/font-viewer/sushi-font-widget.c b/font-viewer/sushi-font-widget.c index 1c8a418b..e4c18f28 100644 --- a/font-viewer/sushi-font-widget.c +++ b/font-viewer/sushi-font-widget.c @@ -574,6 +574,7 @@ load_font_face (SushiFontWidget *self) { sushi_new_ft_face_from_uri_async (self->priv->library, self->priv->uri, + 0, font_face_async_ready_cb, self); } |