Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in tip

stable status: double clicking on a subrepo to open it did not work

We were trying to open the subrepo using its relative path to its parent
repository root.

Changeset 8d636040d1a4

Parent a861aa6ed0a7

by Angel Ezquerra

Changes to one file · Browse files at 8d636040d1a4 Showing diff from parent a861aa6ed0a7 Diff from another changeset...

 
336
337
338
339
 
 
340
341
342
 
865
866
867
868
 
869
870
871
 
336
337
338
 
339
340
341
342
343
 
866
867
868
 
869
870
871
872
@@ -336,7 +336,8 @@
  if status in 'MAR!':   self.actions.allactions[0].trigger()   elif status == 'S': - self.linkActivated.emit(u'subrepo:'+hglib.tounicode(path)) + self.linkActivated.emit( + u'subrepo:' + hglib.tounicode(self.repo.wjoin(path)))     @pyqtSlot(QString)   def setFilter(self, match): @@ -865,7 +866,7 @@
  assert util.all(c in self._TYPES for c in text)   for c in self._TYPES:   self._actions[c].setChecked(c in text) - +  class StatusDialog(QDialog):   'Standalone status browser'   def __init__(self, repo, pats, opts, parent=None):