aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKenny Levinsen <kl@kl.wtf>2021-03-07 01:12:43 +0100
committerSimon Ser <contact@emersion.fr>2021-03-07 11:01:38 +0100
commit46d2f80c381d02e6caf5cde1f91db39da2f50579 (patch)
tree78a67730809a304b664de660fee1c3d1828d229b
parenta02da8e6f671da41d71c7278a0ddcedaa99837f4 (diff)
wlr_seat_pointer: Remove log on notify_button
-rw-r--r--types/seat/wlr_seat_pointer.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/types/seat/wlr_seat_pointer.c b/types/seat/wlr_seat_pointer.c
index 37c637b5..1bcbb4cb 100644
--- a/types/seat/wlr_seat_pointer.c
+++ b/types/seat/wlr_seat_pointer.c
@@ -379,10 +379,6 @@ uint32_t wlr_seat_pointer_notify_button(struct wlr_seat *wlr_seat,
struct wlr_seat_pointer_grab *grab = pointer_state->grab;
uint32_t serial = grab->interface->button(grab, time, button, state);
- wlr_log(WLR_DEBUG, "button_count=%zu grab_serial=%"PRIu32" serial=%"PRIu32"",
- pointer_state->button_count,
- pointer_state->grab_serial, serial);
-
if (serial && pointer_state->button_count == 1 &&
state == WLR_BUTTON_PRESSED) {
pointer_state->grab_serial = serial;