From ce354d0d8a0f6faf4e640995046cdeb2cc21407b Mon Sep 17 00:00:00 2001 From: Antoine Martin Date: Fri, 16 Oct 2015 15:55:39 +0000 Subject: [PATCH] increase rate to 100fps: video regions no longer fire with low framerates git-svn-id: https://xpra.org/svn/Xpra/trunk@10880 3bb7dfac-3a0b-4e04-842a-767bc560f471 --- src/tests/xpra/test_apps/test_videoregions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tests/xpra/test_apps/test_videoregions.py b/src/tests/xpra/test_apps/test_videoregions.py index 1ad3f04dfc..c6e0db87b7 100755 --- a/src/tests/xpra/test_apps/test_videoregions.py +++ b/src/tests/xpra/test_apps/test_videoregions.py @@ -69,7 +69,7 @@ def redraw(self): def main(): w = VideoRegionsWindow() - gobject.timeout_add(1000, w.redraw) + gobject.timeout_add(10, w.redraw) gtk.main() return 0