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

archive: some layout refinings

Changeset 9fd0c305f5b4

Parent f96124906d19

by Johan Samyn

Changes to one file · Browse files at 9fd0c305f5b4 Showing diff from parent f96124906d19 Diff from another changeset...

 
42
43
44
45
46
 
 
47
48
49
 
55
56
57
58
 
59
60
61
 
66
67
68
69
 
70
71
72
 
85
86
87
88
 
89
90
91
 
42
43
44
 
 
45
46
47
48
49
 
55
56
57
 
58
59
60
61
 
66
67
68
 
69
70
71
72
 
85
86
87
 
88
89
90
91
@@ -42,8 +42,8 @@
  self.vbox.addLayout(self.grid)     # content selection - self.rev_lbl = QLabel(_('Archive revision:')) - self.rev_lbl.setAlignment(Qt.AlignRight) + self.rev_lbl = QLabel(_('Revision:')) + self.rev_lbl.setAlignment(Qt.AlignRight|Qt.AlignVCenter)   self.rev_combo = QComboBox()   self.rev_combo.setEditable(True)   self.rev_combo.setSizeAdjustPolicy(QComboBox.AdjustToContents) @@ -55,7 +55,7 @@
    # selecting a destination   self.dest_lbl = QLabel(_('Destination path:')) - self.dest_lbl.setAlignment(Qt.AlignRight) + self.dest_lbl.setAlignment(Qt.AlignRight|Qt.AlignVCenter)   self.dest_edit = QLineEdit()   self.dest_edit.setMinimumWidth(300)   self.dest_btn = QPushButton(_('Browse...')) @@ -66,7 +66,7 @@
    # archive type selection   self.types_lbl = QLabel(_('Archive types:')) - self.types_lbl.setAlignment(Qt.AlignRight) + self.types_lbl.setAlignment(Qt.AlignRight|Qt.AlignVCenter)   def radio(label):   return QRadioButton(label, None)   self.filesradio = radio(_('Directory of files')) @@ -85,7 +85,7 @@
    # some extras   self.hgcmd_lbl = QLabel(_('Hg command:')) - self.hgcmd_lbl.setAlignment(Qt.AlignRight) + self.hgcmd_lbl.setAlignment(Qt.AlignRight|Qt.AlignVCenter)   self.hgcmd_txt = QLineEdit()   self.hgcmd_txt.setReadOnly(True)   self.keep_open_chk = QCheckBox(_('Always show output'))