From 09386b173e438204591251424b896b73998a16b0 Mon Sep 17 00:00:00 2001 From: wm4 Date: Thu, 22 May 2014 09:28:28 +0200 Subject: vo: remove config_ok check from vo_check_events() This should be ok now after the x11 code was adjusted. --- video/out/vo.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/video/out/vo.c b/video/out/vo.c index 8cf867ef3b..a73ce61ff7 100644 --- a/video/out/vo.c +++ b/video/out/vo.c @@ -381,9 +381,7 @@ void vo_flip_page(struct vo *vo, int64_t pts_us, int duration) void vo_check_events(struct vo *vo) { - if (vo->config_ok) { - vo_control(vo, VOCTRL_CHECK_EVENTS, NULL); - } + vo_control(vo, VOCTRL_CHECK_EVENTS, NULL); } void vo_seek_reset(struct vo *vo) -- cgit v1.2.3