Bugfix: When the client is paused, the server still send render kill request because renderingJob is not reseted

This commit is contained in:
Laurent Clouet
2015-03-24 19:42:56 +00:00
parent dc83b7addc
commit 3854aa7955

View File

@@ -141,9 +141,8 @@ public class Client {
Thread thread_sender = new Thread(runnable_sender);
thread_sender.start();
this.renderingJob = null;
while (this.running == true) {
this.renderingJob = null;
synchronized (this) {
while (this.suspended) {
wait();