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

repomodel: remove tooltip role output

was highly distracting and redundant anyway, as the info presented is already
directly visible in the row itself

Changeset 19b4839759a6

Parent 79bd4dd3a480

by Adrian Buehlmann

Changes to one file · Browse files at 19b4839759a6 Showing diff from parent 79bd4dd3a480 Diff from another changeset...

 
299
300
301
302
303
304
305
306
307
308
 
299
300
301
 
 
 
 
302
303
304
@@ -299,10 +299,6 @@
  msg = _columnmap[column](self, ctx, gnode)   return QtCore.QVariant(msg)   return QtCore.QVariant(_columnmap[column](self, ctx, gnode)) - elif role == QtCore.Qt.ToolTipRole: - msg = "<b>Branch:</b> %s<br>\n" % ctx.branch() - msg += _tooltips.get(column, _columnmap[column])(self, ctx, gnode) - return QtCore.QVariant(msg)   elif role == QtCore.Qt.ForegroundRole:   if column == 'Author': #author   return QtCore.QVariant(QtGui.QColor(self.user_color(ctx.user())))