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

repomodel: don't make heads large; slightly improve colours

The colour thing is a work in progress - I just wanted to make the
fill/outline distinction for the moment.

Changeset cff3b1e77a72

Parent d3096a43b508

by George Marrows

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

 
363
364
365
366
367
368
369
370
371
372
 
 
 
373
374
375
 
363
364
365
 
 
 
 
 
 
 
366
367
368
369
370
371
@@ -363,13 +363,9 @@
  painter.drawPath(path)     dot_color = QColor(self.namedbranch_color(ctx.branch())) - dotcolor = QColor(dot_color) - if gnode.rev in self.heads: - penradius = 2 - pencolor = dotcolor.darker() - else: - penradius = 1 - pencolor = Qt.black + dotcolor = QColor(dot_color).lighter() + penradius = 1 + pencolor = dotcolor.darker()     dot_y = (h/2) - radius / 2