mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-02 11:55:59 +01:00
Fix clipboard from xwayland to wayland
This commit is contained in:
parent
76dcb694c1
commit
810c4b119b
1 changed files with 8 additions and 7 deletions
|
@ -541,6 +541,9 @@ static void xwm_handle_selection_notify(struct wlr_xwm *xwm,
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (selection_notify->property == XCB_ATOM_NONE) {
|
||||||
|
wlr_log(L_ERROR, "convert selection failed");
|
||||||
|
} else if (selection_notify->target == xwm->atoms[TARGETS]) {
|
||||||
// No xwayland surface focused, deny access to clipboard
|
// No xwayland surface focused, deny access to clipboard
|
||||||
if (xwm->focus_surface == NULL) {
|
if (xwm->focus_surface == NULL) {
|
||||||
wlr_log(L_DEBUG, "denying write access to clipboard: "
|
wlr_log(L_DEBUG, "denying write access to clipboard: "
|
||||||
|
@ -548,9 +551,7 @@ static void xwm_handle_selection_notify(struct wlr_xwm *xwm,
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (selection_notify->property == XCB_ATOM_NONE) {
|
// This sets the Wayland clipboard (by calling wlr_seat_set_selection)
|
||||||
wlr_log(L_ERROR, "convert selection failed");
|
|
||||||
} else if (selection_notify->target == xwm->atoms[TARGETS]) {
|
|
||||||
xwm_get_selection_targets(xwm);
|
xwm_get_selection_targets(xwm);
|
||||||
} else {
|
} else {
|
||||||
xwm_get_selection_data(xwm);
|
xwm_get_selection_data(xwm);
|
||||||
|
|
Loading…
Reference in a new issue