Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 2.1, 2.1.1, and 2.1.2

stable repofilter: add a tooltip for the branch name

This helps in selecting a branch when the branch selection combo box is too
small to show the full branch name

Changeset ba2357082567

Parent 38cb0dc489f0

by Ahmed Chaudhary

Changes to one file · Browse files at ba2357082567 Showing diff from parent 38cb0dc489f0 Diff from another changeset...

 
236
237
238
 
239
240
241
 
236
237
238
239
240
241
242
@@ -236,6 +236,7 @@
  self._branchCombo.addItem(self._allBranchesLabel)   for branch in branches:   self._branchCombo.addItem(branch) + self._branchCombo.setItemData(self._branchCombo.count() - 1, branch, Qt.ToolTipRole)   self._branchLabel.setEnabled(self.filterEnabled and len(branches) > 1)   self._branchCombo.setEnabled(self.filterEnabled and len(branches) > 1)   self._branchReloading = False