changeset 36230:a1e1633fd45b

Redraw on expose even if not paused.
author reimar
date Sun, 09 Jun 2013 22:27:59 +0000
parents 430a2b6238bb
children b5d3d146ecbe
files libvo/vo_matrixview.c
diffstat 1 files changed, 1 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/libvo/vo_matrixview.c	Sun Jun 09 22:26:52 2013 +0000
+++ b/libvo/vo_matrixview.c	Sun Jun 09 22:27:59 2013 +0000
@@ -148,8 +148,7 @@
     int e = glctx.check_events();
     if (e & VO_EVENT_RESIZE) {
         resize();
-    }
-    if (e & VO_EVENT_EXPOSE && int_pause)
+    } else if (e & VO_EVENT_EXPOSE)
         flip_page();
 }