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

stable sync: YALC (yet another layout change)

The idea here is to move the 'Security' button next to the scheme combo and
above the hostname entry since it is keyed by both of those widgets. 'Save' is
kind of lost.

Changeset b4d744d0b6eb

Parent cbe38c87792d

by Steve Borho

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

 
141
142
143
 
 
 
 
144
145
146
 
147
148
149
150
151
152
 
 
 
 
 
 
 
 
 
 
 
 
 
153
154
155
156
157
 
158
159
160
 
167
168
169
170
171
172
173
174
175
176
177
178
179
180
 
141
142
143
144
145
146
147
148
 
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
 
174
175
176
177
 
184
185
186
 
 
 
 
 
 
 
 
187
188
189
@@ -141,20 +141,37 @@
    urlbox = QGroupBox(_('Current URL'))   self.layout().addWidget(urlbox) + vbox = QVBoxLayout() + vbox.setSpacing(4) + urlbox.setLayout(vbox) +   hbox = QHBoxLayout() - urlbox.setLayout(hbox)   hbox.setSpacing(4) + vbox.addLayout(hbox)     self.schemecombo = QComboBox()   for s in _schemes:   self.schemecombo.addItem(s)   self.schemecombo.currentIndexChanged.connect(self.refreshUrl)   hbox.addWidget(self.schemecombo) + self.securebutton = QPushButton(_('Security')) + self.securebutton.setToolTip( + _('Manage HTTPS connection security and user authentication')) + hbox.addWidget(self.securebutton) + self.savebutton = QPushButton(_('Save')) + self.savebutton.setToolTip( + _('Save current URL under an alias')) + hbox.addStretch(1) + hbox.addWidget(self.savebutton) + + hbox = QHBoxLayout() + hbox.setSpacing(4) + vbox.addLayout(hbox)   hbox.addWidget(QLabel(_('Hostname:')))   self.hostentry = QLineEdit()   self.hostentry.setAcceptDrops(False)   self.hostentry.textChanged.connect(self.refreshUrl) - hbox.addWidget(self.hostentry) + hbox.addWidget(self.hostentry, 1)   hbox.addWidget(QLabel(_('Port:')))   self.portentry = QLineEdit()   self.portentry.setAcceptDrops(False) @@ -167,14 +184,6 @@
  self.pathentry.setAcceptDrops(False)   self.pathentry.textChanged.connect(self.refreshUrl)   hbox.addWidget(self.pathentry, 1) - self.securebutton = QPushButton(_('Security')) - self.securebutton.setToolTip( - _('Manage HTTPS connection security and user authentication')) - hbox.addWidget(self.securebutton) - self.savebutton = QPushButton(_('Save')) - self.savebutton.setToolTip( - _('Save current URL under an alias')) - hbox.addWidget(self.savebutton)     hbox = QHBoxLayout()   hbox.setContentsMargins(0, 0, 0, 0)