make viewport panels background threads, so that they dont make the process hang when exiting (why did this start happening lately?)
This commit is contained in:
parent
ace86fa321
commit
c2be40b6ed
|
@ -27,6 +27,7 @@ namespace BizHawk.Core
|
|||
{
|
||||
ewh = new EventWaitHandle(false, EventResetMode.AutoReset);
|
||||
threadPaint = new Thread(PaintProc);
|
||||
threadPaint.IsBackground = true;
|
||||
threadPaint.Start();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue