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

status: show instruction label

Changeset c0635aeeacd5

Parent e293f9b3a8b5

by Steve Borho

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

 
23
24
25
26
27
28
29
 
30
31
32
 
47
48
49
 
 
 
50
51
52
 
59
60
61
62
 
63
64
65
 
23
24
25
 
26
27
28
29
30
31
32
 
47
48
49
50
51
52
53
54
55
 
62
63
64
 
65
66
67
68
@@ -23,10 +23,10 @@
   # Technical Debt  # -# show LABELS[cmd][0] somewhere  # persistent geometry  # command running functionality  # perhaps a check for no applicable files +# initial check of selected files    class QuickOpDialog(QtGui.QDialog):   """ Dialog for performing quick dirstate operations """ @@ -47,6 +47,9 @@
  layout = QtGui.QVBoxLayout()   self.setLayout(layout)   + lbl = QtGui.QLabel(LABELS[command][0]) + layout.addWidget(lbl) +   types = { 'add' : 'I?',   'forget' : 'MAR!C',   'revert' : 'MAR!', @@ -59,7 +62,7 @@
  opts[val.name] = s in filetypes     stwidget = status.StatusWidget(pats, opts, self) - layout.addWidget(stwidget) + layout.addWidget(stwidget, 1)     if self.command == 'revert':   ## no backup checkbox