aboutsummaryrefslogtreecommitdiff
path: root/xwayland/selection.c
diff options
context:
space:
mode:
authorTony Crisci <tony@dubstepdish.com>2017-12-08 09:23:26 -0500
committerTony Crisci <tony@dubstepdish.com>2017-12-08 09:23:26 -0500
commit52cda5653b52ff33f26b27fb2444c9895192d87e (patch)
tree32685bf8927a0102d24c03d18578a8cfd6557877 /xwayland/selection.c
parent35188834db182db43b407b58db167950fab05477 (diff)
Revert "xwm: only take clipboard if window is focused"
This reverts commit e3542d879d50d6239ad4ca24b4d30520fef40a87.
Diffstat (limited to 'xwayland/selection.c')
-rw-r--r--xwayland/selection.c23
1 files changed, 6 insertions, 17 deletions
diff --git a/xwayland/selection.c b/xwayland/selection.c
index 07d1d48f..3d57f394 100644
--- a/xwayland/selection.c
+++ b/xwayland/selection.c
@@ -466,6 +466,7 @@ static int xwm_handle_xfixes_selection_notify(struct wlr_xwm *xwm,
return 1;
}
+
int xwm_handle_selection_event(struct wlr_xwm *xwm,
xcb_generic_event_t *event) {
if (!xwm->seat) {
@@ -541,25 +542,13 @@ static void handle_seat_set_selection(struct wl_listener *listener,
return;
}
- if (source->send == data_source_send) {
+ if (source->send == data_source_send)
return;
- }
-
- xwm_set_selection_owner(xwm);
-}
-void xwm_set_selection_owner(struct wlr_xwm *xwm) {
- if (xwm->focus_surface && xwm->seat->selection_source) {
- xcb_set_selection_owner(xwm->xcb_conn,
- xwm->selection_window,
- xwm->atoms[CLIPBOARD],
- XCB_TIME_CURRENT_TIME);
- } else {
- xcb_set_selection_owner(xwm->xcb_conn,
- XCB_ATOM_NONE,
- xwm->atoms[CLIPBOARD],
- xwm->selection_timestamp);
- }
+ xcb_set_selection_owner(xwm->xcb_conn,
+ xwm->selection_window,
+ xwm->atoms[CLIPBOARD],
+ XCB_TIME_CURRENT_TIME);
}
void xwm_set_seat(struct wlr_xwm *xwm, struct wlr_seat *seat) {