summaryrefslogtreecommitdiffstats
path: root/video
diff options
context:
space:
mode:
authorAlexander Preisinger <alexander.preisinger@gmail.com>2013-09-12 16:38:44 +0200
committerAlexander Preisinger <alexander.preisinger@gmail.com>2013-09-12 16:38:44 +0200
commit195b8bfe931b2ddb4a10c0da0edbe3903e6a965b (patch)
tree92f95dc945bdc8e6db0bcaf1995a82d37404ce0e /video
parent6bd911d7db2cc7e337982e1a0b2c997f39e6c7e1 (diff)
downloadmpv-195b8bfe931b2ddb4a10c0da0edbe3903e6a965b.tar.bz2
mpv-195b8bfe931b2ddb4a10c0da0edbe3903e6a965b.tar.xz
wayland: change fs messages to dbg
These messages are only helpful when debugging.
Diffstat (limited to 'video')
-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);
}