Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 2.0, 2.0.1, and 2.0.2

stable sync: eliminate group box

Changeset f1264f6ba6a1

Parent d794e8d3f2b7

by Adrian Buehlmann

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

 
147
148
149
150
151
152
153
154
 
 
 
 
 
 
 
 
 
155
156
157
158
 
 
159
160
161
 
198
199
200
201
202
203
204
205
206
207
208
209
 
215
216
217
218
 
219
220
221
 
230
231
232
233
 
234
235
236
 
147
148
149
 
 
 
 
 
150
151
152
153
154
155
156
157
158
159
160
 
 
161
162
163
164
165
 
202
203
204
 
 
 
 
 
 
205
206
207
 
213
214
215
 
216
217
218
219
 
228
229
230
 
231
232
233
234
@@ -147,15 +147,19 @@
    style = QApplication.style()   - urlbox = QGroupBox(_('Remote Repository')) - self.layout().addWidget(urlbox) - vbox = QVBoxLayout() - vbox.setSpacing(4) - urlbox.setLayout(vbox) + hbox = QHBoxLayout() + hbox.setContentsMargins(0, 0, 0, 0) + layout.addLayout(hbox) + hbox.addWidget(QLabel(_('<b>Remote Repository:</b>'))) + self.urllabel = QLabel() + self.urllabel.setTextInteractionFlags(Qt.TextSelectableByMouse) + self.urllabel.setAcceptDrops(False) + hbox.addWidget(self.urllabel) + hbox.addStretch()     hbox = QHBoxLayout() - hbox.setSpacing(4) - vbox.addLayout(hbox) + hbox.setContentsMargins(0, 0, 0, 0) + layout.addLayout(hbox)     self.schemecombo = QComboBox()   for s in _schemes: @@ -198,12 +202,6 @@
  self.savebutton.setToolTip(_('Save current URL under an alias'))   hbox.addWidget(self.savebutton)   - self.urllabel = QLabel() - self.urllabel.setMargin(4) - self.urllabel.setTextInteractionFlags(Qt.TextSelectableByMouse) - self.urllabel.setAcceptDrops(False) - vbox.addWidget(self.urllabel) -   hbox = QHBoxLayout()   hbox.setContentsMargins(0, 0, 0, 0)   self.hgrctv = PathsTree(self, True) @@ -215,7 +213,7 @@
  pathsbox = QVBoxLayout()   pathsbox.setContentsMargins(0, 0, 0, 0)   pathsframe.setLayout(pathsbox) - lbl = QLabel(_('<b>Paths in Repository Settings</b>')) + lbl = QLabel(_('Paths in Repository Settings:'))   pathsbox.addWidget(lbl)   pathsbox.addWidget(self.hgrctv)   hbox.addWidget(pathsframe) @@ -230,7 +228,7 @@
  pathsbox = QVBoxLayout()   pathsbox.setContentsMargins(0, 0, 0, 0)   pathsframe.setLayout(pathsbox) - lbl = QLabel(_('<b>Related Paths</b>')) + lbl = QLabel(_('Related Paths:'))   pathsbox.addWidget(lbl)   pathsbox.addWidget(self.reltv)   hbox.addWidget(pathsframe)