Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 1.9, 1.9.1, and 1.9.2

repomodel: make revision graph wider

Changeset 95e577444847

Parent 8a7af48f84ff

by George Marrows

Changes to one file · Browse files at 95e577444847 Showing diff from parent 8a7af48f84ff Diff from another changeset...

 
293
294
295
296
 
297
298
299
 
321
322
323
324
 
325
326
327
 
293
294
295
 
296
297
298
299
 
321
322
323
 
324
325
326
327
@@ -293,7 +293,7 @@
  return self._branch_colors[branch]     def col2x(self, col): - return (1.2*self.dot_radius + 0) * col + self.dot_radius/2 + 3 + return 2 * self.dot_radius * col + self.dot_radius/2 + 3     @datacached   def data(self, index, role): @@ -321,7 +321,7 @@
  elif role == Qt.DecorationRole:   if column == 'Log':   radius = self.dot_radius - w = (gnode.cols)*(1*radius + 0) + 20 + w = self.col2x(gnode.cols) + 10   h = self.rowheight     dot_x = self.col2x(gnode.x) - radius / 2