Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 0.8, 0.8.1, and 0.8.2

merge with stable

Changeset 8f0bc3015998

Parents 656abc4710e5

Parents ba19c0fdb0e4

by Steve Borho

Changes to one file · Browse files at 8f0bc3015998 Showing diff from parent 656abc4710e5 ba19c0fdb0e4 Diff from another changeset...

Change 1 of 2 Show Entire File hggtk/​hgcmd.py Stacked
 
17
18
19
 
 
 
20
21
22
 
50
51
52
53
54
 
55
56
57
 
17
18
19
20
21
22
23
24
25
 
53
54
55
 
 
56
57
58
59
@@ -17,6 +17,9 @@
 class CmdDialog(gtk.Dialog):   def __init__(self, cmdline, progressbar=True, width=520, height=400):   title = 'hg ' + ' '.join(cmdline[1:]) + if len(title) > 80: + title = toutf(title[:80] + '...') + title = toutf(title.replace('\n', ' '))   gtk.Dialog.__init__(self,   title=title,   flags=gtk.DIALOG_MODAL, @@ -50,8 +53,7 @@
  hbox = gtk.HBox()     self.status_text = gtk.Label() - text = toutf(' '.join(cmdline).replace('\n', ' ')) - self.status_text.set_text(text) + self.status_text.set_text(title)   self.status_text.set_alignment(0, 0.5)   self.status_text.set_ellipsize(pango.ELLIPSIZE_END)   hbox.pack_start(self.status_text, True, True, 3)