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 6104cd067fc7

Parent fc7cac6ed6d3

by David Golub

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

 
194
195
196
 
197
198
199
200
 
201
202
203
 
206
207
208
 
209
210
211
212
 
213
214
215
 
217
218
219
 
220
221
222
 
223
224
225
226
227
228
 
229
230
231
 
194
195
196
197
198
199
200
201
202
203
204
205
 
208
209
210
211
212
213
214
215
216
217
218
219
 
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
@@ -194,10 +194,12 @@
  self.schemecombo.addItem(s)   self.schemecombo.currentIndexChanged.connect(self.refreshUrl)   tbar.addWidget(self.schemecombo) + tbar.addWidget(qtlib.Spacer(2, 2))     a = tbar.addAction(qtlib.geticon('thg-password'), _('Security'))   a.setToolTip(_('Manage HTTPS connection security and user authentication'))   self.securebutton = a + tbar.addWidget(qtlib.Spacer(2, 2))     fontm = QFontMetrics(self.font())   self.hostentry = QLineEdit() @@ -206,10 +208,12 @@
  self.hostentry.setFixedWidth(30 * fontm.width('9'))   self.hostentry.textChanged.connect(self.refreshUrl)   tbar.addWidget(self.hostentry) + tbar.addWidget(qtlib.Spacer(2, 2))     self.HostAndPortWidgets = [self.hostentry]   w = QLabel(':')   tbar.addWidget(w) + tbar.addWidget(qtlib.Spacer(2, 2))   self.HostAndPortWidgets.append(w)   self.portentry = QLineEdit()   self.portentry.setAcceptDrops(False) @@ -217,15 +221,18 @@
  self.portentry.setFixedWidth(8 * fontm.width('9'))   self.portentry.textChanged.connect(self.refreshUrl)   tbar.addWidget(self.portentry) + tbar.addWidget(qtlib.Spacer(2, 2))   self.HostAndPortWidgets.append(self.portentry)   w = QLabel('/')   tbar.addWidget(w) + tbar.addWidget(qtlib.Spacer(2, 2))   self.HostAndPortWidgets.append(w)   self.pathentry = QLineEdit()   self.pathentry.setAcceptDrops(False)   self.pathentry.setToolTip(_('Path'))   self.pathentry.textChanged.connect(self.refreshUrl)   tbar.addWidget(self.pathentry) + tbar.addWidget(qtlib.Spacer(2, 2))     style = QApplication.style()   a = tbar.addAction(style.standardIcon(QStyle.SP_DialogSaveButton),