Age | Commit message (Collapse) | Author |
|
|
|
|
|
|
|
This fixes drag'n'drop support for Chromium.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
xwm.h was meant to be private, so move it to include/xwayland/xwm.h
We had an ifdef WLR_HAS_XCB_ICCCM in xwayland.h which was easy to move
to xwm, it is not safe to use the WLR_HAS_* in the public headers.
I checked a few of our current users and none rely on xwm.h being
public as expected (rootston, sway, hsroots)
|
|
|
|
|
|
|
|
data_device
|
|
While they could eventually be split appart, the current approach could lead to
double wl_list_remove() calls on selections which is incorrect
|
|
This is necessary if our last primary/clipboard selection was on Xwayland,
and we try to paste to native wayland after Xwayland died
|
|
Just abort and deregister instead of trying to throw some input out,
which would have lead to inconsistent paste
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
This reverts commit e3542d879d50d6239ad4ca24b4d30520fef40a87.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|