don't insert <br> when displaying as HTML

This commit is contained in:
Jonathan Warren 2013-04-06 12:04:24 -04:00
parent af87503ec7
commit 6150a782f9
1 changed files with 1 additions and 1 deletions

View File

@ -4603,7 +4603,7 @@ class MyForm(QtGui.QMainWindow):
lines[i] = '<hr>'
content = ''
for i in xrange(len(lines)):
content += lines[i] + '<br>'
content += lines[i]
content = content.replace('\n\n', '<br><br>')
self.ui.textEditInboxMessage.setHtml(QtCore.QString(content))