Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 2.0.3, 2.0.4, and 2.0.5

stable grep: do not set thread member to None after stop (fixes #338)

Changeset 18980afadbae

Parent 732b127659d9

by Steve Borho

Changes to one file · Browse files at 18980afadbae Showing diff from parent 732b127659d9 Diff from another changeset...

 
226
227
228
229
230
 
231
232
233
 
226
227
228
 
 
229
230
231
232
@@ -226,8 +226,7 @@
  def stopClicked(self):   if self.thread and self.thread.isRunning():   self.thread.cancel() - if self.thread.wait( 2000 ): - self.thread = None + self.thread.wait(2000)     def keyPressEvent(self, event):   if event.key() == Qt.Key_Escape: