Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 0.9, 0.9.1, and 0.9.1.1

bugreport: use "diff" font to show backtraces

fontdiff is monospace by default, and it is unlikely a user would chose a font
that wasn't monospace to display their diffs.

Fixes #600

Changeset 375cbce77395

Parent 3ec33aec2793

by Steve Borho

Changes to one file · Browse files at 375cbce77395 Showing diff from parent 3ec33aec2793 Diff from another changeset...

 
32
33
34
35
 
36
37
38
 
32
33
34
 
35
36
37
38
@@ -32,7 +32,7 @@
  textview = gtk.TextView()   textview.set_wrap_mode(gtk.WRAP_NONE)   textview.set_editable(False) - textview.modify_font(pango.FontDescription(self.fontlist)) + textview.modify_font(pango.FontDescription(self.fontdiff))   scroller = gtk.ScrolledWindow()   scroller.set_shadow_type(gtk.SHADOW_IN)   scroller.set_policy(gtk.POLICY_AUTOMATIC, gtk.POLICY_AUTOMATIC)