UI: don't block UI on vipc recv (#22644)

* UI: don't block UI on vipc recv

* use a timer

* move that
old-commit-hash: c4de1fef4f925e9ba5292f501c2acd70dd0f1505
This commit is contained in:
Adeeb Shihadeh
2021-10-22 14:16:14 -07:00
committed by GitHub
parent eea6847ac0
commit 4e005ead0a
5 changed files with 18 additions and 26 deletions
+1 -1
View File
@@ -114,7 +114,7 @@ if arch in ['x86_64', 'Darwin'] and os.path.exists(Dir("#tools/").get_abspath())
replay_libs = [replay_lib, 'avutil', 'avcodec', 'avformat', 'bz2', 'curl', 'yuv'] + qt_libs
qt_env.Program("replay/replay", ["replay/main.cc"], LIBS=replay_libs)
qt_env.Program("watch3", ["watch3.cc"], LIBS=qt_libs)
qt_env.Program("watch3", ["watch3.cc"], LIBS=qt_libs + ['common', 'json11'])
if GetOption('test'):
qt_env.Program('replay/tests/test_replay', ['replay/tests/test_runner.cc', 'replay/tests/test_replay.cc'], LIBS=[replay_libs])