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

status: apply escaped-html workaround for clean files

This repeats the workaround Adrian made for untracked files. Without it,
the text would be rendered with the font attributes of the link you just
clicked on... strange.

Changeset 1d10fbc0574f

Parent 8e7047de06f4

by Steve Borho

Changes to one file · Browse files at 1d10fbc0574f Showing diff from parent 8e7047de06f4 Diff from another changeset...

 
370
371
372
373
 
 
374
375
376
 
370
371
372
 
373
374
375
376
377
@@ -370,7 +370,8 @@
  diff = _('<b>Contents are binary, not previewable</b>')   self.te.setHtml(diff)   else: - self.te.setText(diff) + diff = '<pre>%s</pre>' % xml_escape(diff) + self.te.setHtml(diff)   else:   diff = _('<b>Not displayed</b>') + show   self.te.setHtml(diff)