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: add tooltips for two URL push buttons

Changeset e529f25c9271

Parent cf7622800865

by Steve Borho

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

 
139
140
141
142
 
143
144
145
 
168
169
170
 
 
171
172
 
 
173
174
175
 
139
140
141
 
142
143
144
145
 
168
169
170
171
172
173
174
175
176
177
178
179
@@ -139,7 +139,7 @@
  tb.addSeparator()   tb.addWidget(self.urllabel)   - urlbox = QGroupBox(_('URL')) + urlbox = QGroupBox(_('Current URL'))   self.layout().addWidget(urlbox)   hbox = QHBoxLayout()   urlbox.setLayout(hbox) @@ -168,8 +168,12 @@
  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()