Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 2.0.4, 2.0.5, and 2.1

stable sync: move style declaration closer to where it is used

Changeset 2d244bbc2a04

Parent 255b4122865a

by Steve Borho

Changes to one file · Browse files at 2d244bbc2a04 Showing diff from parent 255b4122865a Diff from another changeset...

 
148
149
150
151
152
153
154
155
 
201
202
203
 
204
205
206
 
148
149
150
 
 
151
152
153
 
199
200
201
202
203
204
205
@@ -148,8 +148,6 @@
  tb.addWidget(self.targetcheckbox)   tb.addWidget(self.targetcombo)   - style = QApplication.style() -   hbox = QHBoxLayout()   hbox.setContentsMargins(0, 0, 0, 0)   layout.addLayout(hbox) @@ -201,6 +199,7 @@
  self.pathentry.textChanged.connect(self.refreshUrl)   hbox.addWidget(self.pathentry, 4)   + style = QApplication.style()   self.savebutton = QPushButton(style.standardIcon(QStyle.SP_DialogSaveButton), '')   self.savebutton.setToolTip(_('Save current URL under an alias'))   hbox.addWidget(self.savebutton)