Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 0.7, 0.7.1, and 0.7.2

histselect: fix changeset selection

refs #26. I don't think this necessarily fixes it.

Changeset 43eebc5b93a1

Parent 92fb38b18ace

by Steve Borho

Changes to one file · Browse files at 43eebc5b93a1 Showing diff from parent 92fb38b18ace Diff from another changeset...

 
118
119
120
121
 
 
122
123
124
 
118
119
120
 
121
122
123
124
125
@@ -118,7 +118,8 @@
  def _cursor_changed(self, tv):   model, selpaths = tv.get_selection().get_selected_rows()   if not selpaths: return - cs = model[selpaths[0]][1] + index = selpaths[0][0] + cs = self.history[index]['changeset'][0]   rev, csid = cs.split(':')   self.selected = (rev, csid)