Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 2.1.2 and tip

stable chunks: use correct font for GUI elements

Changeset 242933c8c1bc

Parent 76f5d89c0a32

by David Golub

Changes to one file · Browse files at 242933c8c1bc Showing diff from parent 76f5d89c0a32 Diff from another changeset...

 
516
517
518
 
519
 
520
 
521
522
523
524
 
525
526
527
 
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
@@ -516,12 +516,16 @@
  w.setTextInteractionFlags(f | Qt.TextSelectableByMouse)   w.linkActivated.connect(self.linkActivated)   + guifont = qtlib.getfont('fontlist').font()   self.sumlabel = QLabel() + self.sumlabel.setFont(guifont)   self.allbutton = QToolButton() + self.allbutton.setFont(guifont)   self.allbutton.setText(_('All', 'files'))   self.allbutton.setShortcut(QKeySequence.SelectAll)   self.allbutton.clicked.connect(self.selectAll)   self.nonebutton = QToolButton() + self.nonebutton.setFont(guifont)   self.nonebutton.setText(_('None', 'files'))   self.nonebutton.setShortcut(QKeySequence.New)   self.nonebutton.clicked.connect(self.selectNone)