clients/screenshooter: Add the output name to screenshot name
[src/agl-compositor.git] / src / desktop.c
index eb0dc8a..e492414 100644 (file)
@@ -393,11 +393,16 @@ desktop_committed(struct weston_desktop_surface *dsurface,
                return;
 
        if (ivi->shell_client.ready && !surface->checked_pending) {
-               const char * app_id =   weston_desktop_surface_get_app_id(dsurface);
+               struct ivi_output *remote_output = NULL;
+               const char *app_id =    weston_desktop_surface_get_app_id(dsurface);
                weston_log("Checking pending surface %p, app_id %s\n", surface,
                        app_id);
                wl_list_remove(&surface->link);
                wl_list_init(&surface->link);
+
+               if ((remote_output = ivi_layout_find_with_app_id(app_id, ivi)))
+                       ivi_set_pending_desktop_surface_remote(remote_output, app_id);
+
                ivi_check_pending_desktop_surface(surface);
                surface->checked_pending = true;