diff options
author | Jiří Techet <techet@gmail.com> | 2019-01-26 22:29:08 +0100 |
---|---|---|
committer | Jiří Techet <techet@gmail.com> | 2019-01-26 22:29:08 +0100 |
commit | d1e6bf8c490696f99b8c5d28eaea8bb0274b9cbb (patch) | |
tree | a75bb3cf1afff6d75fbffdc9681f4c422ff69671 /champlain/champlain-path-layer.c | |
parent | 8a34c1b8296a46b92c11e5d2b40443ce29920c69 (diff) | |
download | libchamplain-d1e6bf8c490696f99b8c5d28eaea8bb0274b9cbb.tar.gz |
Eliminate some warnings and bump clutter requirement to 1.24
Diffstat (limited to 'champlain/champlain-path-layer.c')
-rw-r--r-- | champlain/champlain-path-layer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/champlain/champlain-path-layer.c b/champlain/champlain-path-layer.c index 42aeeb0..7b2baa8 100644 --- a/champlain/champlain-path-layer.c +++ b/champlain/champlain-path-layer.c @@ -858,7 +858,7 @@ update_surface (ChamplainPathLayer *layer, cairo_surface_destroy (new_surface); } /* When only the right actor is visible, no merging is required */ - else if (!CLUTTER_ACTOR_IS_VISIBLE (priv->left_actor)) + else if (!clutter_actor_is_visible (priv->left_actor)) set_surface (CHAMPLAIN_EXPORTABLE (layer), priv->right_surface); } |