Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 1.9, 1.9.1, and 1.9.2

qtlib: <font> is not appropriate html tag for this

Changeset cb1e7c21d72e

Parent 1a9ab68f463a

by Yuki KODAMA

Changes to one file · Browse files at cb1e7c21d72e Showing diff from parent 1a9ab68f463a Diff from another changeset...

 
97
98
99
100
 
101
102
103
 
97
98
99
 
100
101
102
103
@@ -97,7 +97,7 @@
  msg = hglib.tounicode(msg)   msg = QtCore.Qt.escape(msg)   msg = msg.replace('\n', '<br />') - return '<font style="%s">%s</font>' % (style, msg) + return '<span style="%s">%s</span>' % (style, msg)    def CommonMsgBox(icon, title, main, text='', buttons=QtGui.QMessageBox.Close,   parent=None):