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

stable sync: add spacing around outside of dialog box

Changeset fc7cac6ed6d3

Parent f9605528decf

by David Golub

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

 
157
158
159
 
 
 
 
160
161
162
 
163
164
165
 
169
170
171
172
 
173
174
175
 
179
180
181
182
 
183
184
185
 
260
261
262
263
 
264
265
266
 
274
275
276
277
 
278
279
280
 
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
 
264
265
266
 
267
268
269
270
 
278
279
280
 
281
282
283
284
@@ -157,9 +157,13 @@
  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) - layout.addLayout(hbox) + bottomlayout.addLayout(hbox)   self.optionshdrlabel = lbl = QLabel(_('<b>Selected Options:</b>'))   hbox.addWidget(lbl)   self.optionslabel = QLabel() @@ -169,7 +173,7 @@
    hbox = QHBoxLayout()   hbox.setContentsMargins(0, 0, 0, 0) - layout.addLayout(hbox) + bottomlayout.addLayout(hbox)   hbox.addWidget(QLabel(_('<b>Remote Repository:</b>')))   self.urllabel = QLabel()   self.urllabel.setTextInteractionFlags(Qt.TextSelectableByMouse) @@ -179,7 +183,7 @@
    hbox = QHBoxLayout()   hbox.setContentsMargins(0, 0, 0, 0) - layout.addLayout(hbox) + bottomlayout.addLayout(hbox)     self.pathEditToolbar = tbar = QToolBar(_('Path Edit Toolbar'))   tbar.setStyleSheet(qtlib.tbstylesheet) @@ -260,7 +264,7 @@
  pathsbox.addWidget(self.reltv)   hbox.addWidget(pathsframe)   - self.layout().addLayout(hbox, 1) + bottomlayout.addLayout(hbox, 1)     self.savebutton.triggered.connect(self.saveclicked)   self.securebutton.triggered.connect(self.secureclicked) @@ -274,7 +278,7 @@
  cmd.output.connect(self.output)   cmd.progress.connect(self.progress)   - layout.addWidget(cmd) + bottomlayout.addWidget(cmd)   cmd.setVisible(False)   self.cmd = cmd