Commit 280e7dd918f1717c7d677676384a9cd991097741 introduced a bug in the return value of weston_subsurface_is_synchronized().
Signed-off-by: Carlos Olmedo Escobar <[email protected]> --- src/compositor.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/compositor.c b/src/compositor.c index ac5bda2..ff62b5f 100644 --- a/src/compositor.c +++ b/src/compositor.c @@ -2639,7 +2639,7 @@ weston_subsurface_is_synchronized(struct weston_subsurface *sub) sub = weston_surface_to_subsurface(sub->parent); } - return true; + return false; } static void -- 2.1.1 _______________________________________________ wayland-devel mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/wayland-devel
