Fixed #6938: Remote app mode clipboard fix

In remote app mode the _FREERDP_TIMESTAMP_PROPERTY does not work.
Therefore ignore it
This commit is contained in:
akallabeth 2021-04-16 10:50:08 +02:00
parent 689cb70da2
commit f2254f0b09

View File

@ -1657,7 +1657,10 @@ static UINT xf_cliprdr_server_format_list(CliprdrClientContext* context,
}
ret = xf_cliprdr_send_client_format_list_response(clipboard, TRUE);
xf_cliprdr_prepare_to_set_selection_owner(xfc, clipboard);
if (xfc->remote_app)
xf_cliprdr_set_selection_owner(xfc, clipboard, CurrentTime);
else
xf_cliprdr_prepare_to_set_selection_owner(xfc, clipboard);
return ret;
}