mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-05 21:15:59 +01:00
Add logging to selection message handlers
This commit is contained in:
parent
b3072f81fe
commit
1c9b09ca92
1 changed files with 10 additions and 0 deletions
|
@ -293,6 +293,9 @@ static void xwm_handle_selection_request(struct wlr_xwm *xwm,
|
|||
xcb_selection_request_event_t *selection_request =
|
||||
(xcb_selection_request_event_t *) event;
|
||||
|
||||
wlr_log(L_DEBUG, "XCB_SELECTION_REQUEST (selection=%u, target=%u)",
|
||||
selection_request->selection, selection_request->target);
|
||||
|
||||
if (selection_request->selection == xwm->atoms[CLIPBOARD_MANAGER]) {
|
||||
// The wlroots clipboard should already have grabbed the first target,
|
||||
// so just send selection notify now. This isn't synchronized with the
|
||||
|
@ -670,6 +673,10 @@ static void xwm_handle_selection_notify(struct wlr_xwm *xwm,
|
|||
xcb_selection_notify_event_t *selection_notify =
|
||||
(xcb_selection_notify_event_t *) event;
|
||||
|
||||
wlr_log(L_DEBUG, "XCB_SELECTION_NOTIFY (selection=%u, property=%u, target=%u)",
|
||||
selection_notify->selection, selection_notify->property,
|
||||
selection_notify->target);
|
||||
|
||||
struct wlr_xwm_selection *selection =
|
||||
xwm_get_selection(xwm, selection_notify->selection);
|
||||
if (selection == NULL) {
|
||||
|
@ -698,6 +705,9 @@ static int xwm_handle_xfixes_selection_notify(struct wlr_xwm *xwm,
|
|||
xcb_xfixes_selection_notify_event_t *xfixes_selection_notify =
|
||||
(xcb_xfixes_selection_notify_event_t *)event;
|
||||
|
||||
wlr_log(L_DEBUG, "XCB_XFIXES_SELECTION_NOTIFY (selection=%u, owner=%u)",
|
||||
xfixes_selection_notify->selection, xfixes_selection_notify->owner);
|
||||
|
||||
struct wlr_xwm_selection *selection =
|
||||
xwm_get_selection(xwm, xfixes_selection_notify->selection);
|
||||
if (selection == NULL) {
|
||||
|
|
Loading…
Reference in a new issue