From 2dc7ba64e369dd4be2d200fed04b78b0d1b43285 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Thu, 31 Jan 2008 01:53:02 +0000 Subject: [PATCH] Improved the job dispatch system. Now after a job has completed, it remains in the list and you can view any output from it, by double clicking the list entry. --- src/libprs500/gui2/jobs.py | 1 - 1 file changed, 1 deletion(-) diff --git a/src/libprs500/gui2/jobs.py b/src/libprs500/gui2/jobs.py index a2cae559e0..f598204067 100644 --- a/src/libprs500/gui2/jobs.py +++ b/src/libprs500/gui2/jobs.py @@ -150,7 +150,6 @@ class JobManager(QAbstractTableModel): self.timer_id = self.startTimer(500) def terminate_device_jobs(self): - changed = False for job in self.running_jobs: if isinstance(job, DeviceJob): job.terminate()