Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 2.0, 2.0.1, and 2.0.2

stable branchop: use UI text "Close current branch"

instead of "Close current named branch"

We can close a head of the default branch, which can be considered unnamed.

Changeset 13a3819f604b

Parent 1a7f211dbd8e

by Adrian Buehlmann

Changes to one file · Browse files at 13a3819f604b Showing diff from parent 1a7f211dbd8e Diff from another changeset...

 
40
41
42
43
 
44
45
46
 
40
41
42
 
43
44
45
46
@@ -40,7 +40,7 @@
  grid = QGridLayout()   nochange = QRadioButton(_('No branch changes'))   newbranch = QRadioButton(_('Open a new named branch')) - closebranch = QRadioButton(_('Close current named branch')) + closebranch = QRadioButton(_('Close current branch'))   branchCombo = QComboBox()   branchCombo.setEditable(True)   for name in hglib.getlivebranch(repo):