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

stable commit: disconnect thgrepo signals at close

Changeset b8d547669f61

Parent ee15281d92a3

by Steve Borho

Changes to one file · Browse files at b8d547669f61 Showing diff from parent ee15281d92a3 Diff from another changeset...

 
943
944
945
 
 
 
 
 
 
 
946
947
948
 
943
944
945
946
947
948
949
950
951
952
953
954
955
@@ -943,6 +943,13 @@
  self.commit.msgte.setFocus()   QShortcut(QKeySequence.Refresh, self, self.refresh)   + def done(self, ret): + self.commit.repo.configChanged.disconnect(self.commit.configChanged) + self.commit.repo.repositoryChanged.disconnect(self.commit.repositoryChanged) + self.commit.repo.workingBranchChanged.disconnect(self.commit.workingBranchChanged) + self.commit.repo.repositoryChanged.disconnect(self.updateUndo) + super(CommitDialog, self).done(ret) +   def linkActivated(self, link):   link = hglib.fromunicode(link)   if link.startswith('subrepo:'):