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

stable Backed out changeset: 353c93715d34

1 - it uses up a lot more horizontal space, causing the URL label to hide
2 - the revision number was not parsed correctly, causing breakage

Changeset bfab15827483

Parent c46ad970cba2

by Steve Borho

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

 
243
244
245
246
 
247
248
 
249
250
251
 
261
262
263
 
264
265
266
267
268
 
243
244
245
 
246
247
 
248
249
250
251
 
261
262
263
264
265
 
266
267
268
@@ -243,9 +243,9 @@
  else:   self.curalias = None   - def loadTargets(self, ctx): + def loadTargets(self, rev):   self.targetcombo.clear() - self.targetcombo.addItem(_('rev: %d (%s)') % (ctx.rev(), str(ctx)), str(ctx.rev())) + self.targetcombo.addItem(_('rev: ') + str(rev), str(rev))     for name in self.repo.namedbranches:   uname = hglib.tounicode(name) @@ -261,8 +261,8 @@
  if rev >= len(self.repo):   return   + self.loadTargets(rev)   ctx = self.repo.changectx(rev) - self.loadTargets(ctx)     target = str(rev)   if ctx.thgbranchhead():