Commit 828ac88f authored by Alexandre Julliard's avatar Alexandre Julliard

winex11: Improved handling of broken 8-bit TARGETS selection.

parent 28553fa8
...@@ -1902,8 +1902,22 @@ static int X11DRV_CLIPBOARD_QueryAvailableData(LPCLIPBOARDINFO lpcbinfo) ...@@ -1902,8 +1902,22 @@ static int X11DRV_CLIPBOARD_QueryAvailableData(LPCLIPBOARDINFO lpcbinfo)
* The TARGETS property should have returned us a list of atoms * The TARGETS property should have returned us a list of atoms
* corresponding to each selection target format supported. * corresponding to each selection target format supported.
*/ */
if (aformat == 32 && (atype == XA_ATOM || atype == x11drv_atom(TARGETS))) if (atype == XA_ATOM || atype == x11drv_atom(TARGETS))
X11DRV_CLIPBOARD_InsertSelectionProperties(display, targetList, cSelectionTargets); {
if (aformat == 32)
{
X11DRV_CLIPBOARD_InsertSelectionProperties(display, targetList, cSelectionTargets);
}
else if (aformat == 8) /* work around quartz-wm brain damage */
{
unsigned long i, count = cSelectionTargets / sizeof(CARD32);
Atom *atoms = HeapAlloc( GetProcessHeap(), 0, count * sizeof(Atom) );
for (i = 0; i < count; i++)
atoms[i] = ((CARD32 *)targetList)[i]; /* FIXME: byte swapping */
X11DRV_CLIPBOARD_InsertSelectionProperties( display, atoms, count );
HeapFree( GetProcessHeap(), 0, atoms );
}
}
/* Free the list of targets */ /* Free the list of targets */
wine_tsx11_lock(); wine_tsx11_lock();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment