Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 2.1.2 and tip

stable Backed out changeset: fc7cac6ed6d3

Looks ugly in Workbench

Changeset 52eb1f25a6ce

Parent bb515093a3d2

by Adrian Buehlmann

Changes to one file · Browse files at 52eb1f25a6ce Showing diff from parent bb515093a3d2 Diff from another changeset...

 
157
158
159
160
161
162
163
164
165
166
 
167
168
169
 
173
174
175
176
 
177
178
179
 
183
184
185
186
 
187
188
189
 
271
272
273
274
 
275
276
277
 
285
286
287
288
 
289
290
291
 
157
158
159
 
 
 
 
160
161
 
162
163
164
165
 
169
170
171
 
172
173
174
175
 
179
180
181
 
182
183
184
185
 
267
268
269
 
270
271
272
273
 
281
282
283
 
284
285
286
287
@@ -157,13 +157,9 @@
  tb.addWidget(self.targetcheckbox)   tb.addWidget(self.targetcombo)   - bottomlayout = QVBoxLayout() - bottomlayout.setContentsMargins(5, 5, 5, 5) - layout.addLayout(bottomlayout) -   hbox = QHBoxLayout()   hbox.setContentsMargins(0, 0, 0, 0) - bottomlayout.addLayout(hbox) + layout.addLayout(hbox)   self.optionshdrlabel = lbl = QLabel(_('<b>Selected Options:</b>'))   hbox.addWidget(lbl)   self.optionslabel = QLabel() @@ -173,7 +169,7 @@
    hbox = QHBoxLayout()   hbox.setContentsMargins(0, 0, 0, 0) - bottomlayout.addLayout(hbox) + layout.addLayout(hbox)   hbox.addWidget(QLabel(_('<b>Remote Repository:</b>')))   self.urllabel = QLabel()   self.urllabel.setTextInteractionFlags(Qt.TextSelectableByMouse) @@ -183,7 +179,7 @@
    hbox = QHBoxLayout()   hbox.setContentsMargins(0, 0, 0, 0) - bottomlayout.addLayout(hbox) + layout.addLayout(hbox)     self.pathEditToolbar = tbar = QToolBar(_('Path Edit Toolbar'))   tbar.setStyleSheet(qtlib.tbstylesheet) @@ -271,7 +267,7 @@
  pathsbox.addWidget(self.reltv)   hbox.addWidget(pathsframe)   - bottomlayout.addLayout(hbox, 1) + self.layout().addLayout(hbox, 1)     self.savebutton.triggered.connect(self.saveclicked)   self.securebutton.triggered.connect(self.secureclicked) @@ -285,7 +281,7 @@
  cmd.output.connect(self.output)   cmd.progress.connect(self.progress)   - bottomlayout.addWidget(cmd) + layout.addWidget(cmd)   cmd.setVisible(False)   self.cmd = cmd