summaryrefslogtreecommitdiffstats
path: root/video/out/wayland_common.c
diff options
context:
space:
mode:
Diffstat (limited to 'video/out/wayland_common.c')
-rw-r--r--video/out/wayland_common.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/video/out/wayland_common.c b/video/out/wayland_common.c
index 89cd698b30..96277551c5 100644
--- a/video/out/wayland_common.c
+++ b/video/out/wayland_common.c
@@ -768,7 +768,7 @@ static void vo_wayland_fullscreen (struct vo *vo)
struct wl_output *fs_output = wl->display.fs_output;
if (vo->opts->fullscreen) {
- MP_VERBOSE(wl, "going fullscreen\n");
+ MP_DBG(wl, "going fullscreen\n");
wl->window.p_width = wl->window.width;
wl->window.p_height = wl->window.height;
wl_shell_surface_set_fullscreen(wl->window.shell_surface,
@@ -777,7 +777,7 @@ static void vo_wayland_fullscreen (struct vo *vo)
}
else {
- MP_VERBOSE(wl, "leaving fullscreen\n");
+ MP_DBG(wl, "leaving fullscreen\n");
wl_shell_surface_set_toplevel(wl->window.shell_surface);
shedule_resize(wl, 0, wl->window.p_width, wl->window.p_height);
}