mirror of
https://github.com/brl/mutter.git
synced 2024-11-28 11:00:54 -05:00
x11: Finish INCR transfers properly
INCR transfers are mandated to finish with a final 0-size XChangeProperty
roundtrip after the final data chunk. Actually honor this and ensure we
iterate just once more for this.
https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/1198
(cherry picked from commit 04d429b743
)
This commit is contained in:
parent
c46bea9dff
commit
c43f178495
@ -125,7 +125,12 @@ meta_x11_selection_output_stream_needs_flush_unlocked (MetaX11SelectionOutputStr
|
|||||||
meta_x11_selection_output_stream_get_instance_private (stream);
|
meta_x11_selection_output_stream_get_instance_private (stream);
|
||||||
|
|
||||||
if (priv->data->len == 0)
|
if (priv->data->len == 0)
|
||||||
return FALSE;
|
{
|
||||||
|
if (priv->incr)
|
||||||
|
return g_output_stream_is_closing (G_OUTPUT_STREAM (stream));
|
||||||
|
else
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
if (g_output_stream_is_closing (G_OUTPUT_STREAM (stream)))
|
if (g_output_stream_is_closing (G_OUTPUT_STREAM (stream)))
|
||||||
return TRUE;
|
return TRUE;
|
||||||
|
Loading…
Reference in New Issue
Block a user