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 commit: disable commit button while commit is in progress (refs #247)

Changeset ede9ac6297a6

Parent 7e06fde01b10

by Steve Borho

Changes to one file · Browse files at ede9ac6297a6 Showing diff from parent 7e06fde01b10 Diff from another changeset...

 
609
610
611
 
612
613
614
 
615
616
617
 
609
610
611
612
613
614
615
616
617
618
619
@@ -609,9 +609,11 @@
  commandlines.append(cmd)     repo.incrementBusyCount() + self.commitButtonEnable.emit(False)   self.runner.run(*commandlines)     def commandFinished(self, ret): + self.commitButtonEnable.emit(True)   self.repo.decrementBusyCount()   if ret == 0:   umsg = self.msgte.text()