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

stable tag: fix cut-paste error (closes #277)

My guess is that this bug prevented QDialog.reject() from being called, so the
dialog was not closed the first time. The second time reject() was called the
disconnect error was thrown, because the signal was already disconnected.

Changeset da42974008e6

Parent 489db85732fb

by Steve Borho

Changes to one file · Browse files at da42974008e6 Showing diff from parent 489db85732fb Diff from another changeset...

 
319
320
321
322
 
323
324
325
 
319
320
321
 
322
323
324
325
@@ -319,7 +319,7 @@
  def reject(self):   # prevent signals from reaching deleted objects   self.repo.repositoryChanged.disconnect(self.refresh) - super(BookmarkDialog, self).reject() + super(TagDialog, self).reject()    def run(ui, *pats, **opts):   kargs = {}