Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 2.0, 2.0.1, and 2.0.2

stable commit: do not allow commit tool to exit while refresh thread is busy

Changeset ee30992001aa

Parent 6b7f5ae23f81

by Steve Borho

Changes to one file · Browse files at ee30992001aa Showing diff from parent 6b7f5ae23f81 Diff from another changeset...

 
397
398
399
400
401
402
 
 
403
404
405
 
397
398
399
 
 
 
400
401
402
403
404
@@ -397,9 +397,8 @@
  self.msgte.setModified(False)     def canExit(self): - # Usually safe to exit, since we're saving messages implicitly - # We'll ask the user for confirmation later, if they have any - # files partially selected. + if not self.stwidget.canExit(): + return False   return not self.runner.core.running()     def loadSettings(self, s, prefix):