diff options
author | Rostislav Pehlivanov <atomnuker@gmail.com> | 2016-05-31 01:47:04 +0100 |
---|---|---|
committer | wm4 <wm4@nowhere> | 2016-05-31 11:22:57 +0200 |
commit | e44882d792f6f2dc85886462cf53780018c6fedc (patch) | |
tree | 8d4abdb82e6b37845e9bc73affab4754ba809c2e /video/out | |
parent | 29ea6e5e4a25a08fda93ad2769d5dcaef041a95b (diff) | |
download | mpv-e44882d792f6f2dc85886462cf53780018c6fedc.tar.bz2 mpv-e44882d792f6f2dc85886462cf53780018c6fedc.tar.xz |
wayland: mark existing dnd entry print as debug rather than an error
It gets printed on every alt+tab or desktop switch under mutter and
weston, and offers no useful information since it's handled by
destroying the previous entry.
Signed-off-by: Rostislav Pehlivanov <atomnuker@gmail.com>
Diffstat (limited to 'video/out')
-rw-r--r-- | video/out/wayland_common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/video/out/wayland_common.c b/video/out/wayland_common.c index 9ec3a4f65d..0e44dddef6 100644 --- a/video/out/wayland_common.c +++ b/video/out/wayland_common.c @@ -540,7 +540,7 @@ static void data_device_handle_data_offer(void *data, { struct vo_wayland_state *wl = data; if (wl->input.offer) { - MP_ERR(wl, "There is already a dnd entry point.\n"); + MP_DBG(wl, "There is already a dnd entry point.\n"); wl_data_offer_destroy(wl->input.offer); } |