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

stable workbench: Make bold and add icons to the Commit, QRefresh and Search buttons

Changeset 3b3d6e207d0d

Parent 69e6058dd073

by Angel Ezquerra

Changes to 3 files · Browse files at 3b3d6e207d0d Showing diff from parent 69e6058dd073 Diff from another changeset...

 
48
49
50
 
 
 
 
51
52
53
 
48
49
50
51
52
53
54
55
56
57
@@ -48,6 +48,10 @@
  chk = QCheckBox(_('Ignore case'))   bt = QPushButton(_('Search'))   bt.setDefault(True) + bt.setIcon(qtlib.geticon('hg-grep')) + f = bt.font() + f.setWeight(QFont.Bold) + bt.setFont(f)   cbt = QPushButton(_('Stop'))   cbt.setEnabled(False)   cbt.clicked.connect(self.stopClicked)
 
158
159
160
161
 
 
 
 
 
 
 
 
162
163
164
 
158
159
160
 
161
162
163
164
165
166
167
168
169
170
171
@@ -158,7 +158,14 @@
  qrefhbox.setContentsMargins(0, 0, 0, 0)   self.qqueueBtn = QPushButton(_('Manage queues'))   self.qqueueBtn.setMinimumWidth(150) - self.qnewOrRefreshBtn = QPushButton(_('QRefresh')) + + b = QPushButton(_('QRefresh')) + f = b.font() + f.setWeight(QFont.Bold) + b.setFont(f) + b.setIcon(qtlib.geticon('hg-commit')) + self.qnewOrRefreshBtn = b +   qrefhbox.addWidget(self.qqueueBtn)   qrefhbox.addStretch(1)   qrefhbox.addWidget(self.qnewOrRefreshBtn)
 
232
233
234
 
235
236
237
 
232
233
234
235
236
237
238
@@ -232,6 +232,7 @@
  pats = {}   opts = {}   b = QPushButton(_('Commit')) + b.setIcon(qtlib.geticon('hg-commit'))   b.setAutoDefault(True)   f = b.font()   f.setWeight(QFont.Bold)