Don't use hardcoded 'black' as text colour for non-money stats in the stat viewers. Use the theme default instead.

This commit is contained in:
Chris 2011-02-05 16:38:37 -08:00 committed by Worros
parent 13dbfa2914
commit 1e6ce47dc0
2 changed files with 2 additions and 2 deletions

View File

@ -339,7 +339,7 @@ class GuiRingPlayerStats (GuiPlayerStats.GuiPlayerStats):
#end def createStatsTable
def reset_style_render_func(self, treeviewcolumn, cell, model, iter):
cell.set_property('foreground', 'black')
cell.set_property('foreground', None)
#end def reset_style_render_func
def ledger_style_render_func(self, tvcol, cell, model, iter):

View File

@ -434,7 +434,7 @@ class GuiTourneyPlayerStats (GuiPlayerStats.GuiPlayerStats):
#end def refreshStats
def reset_style_render_func(self, treeviewcolumn, cell, model, iter):
cell.set_property('foreground', 'black')
cell.set_property('foreground', None)
#end def reset_style_render_func
def sortCols(self, col, nums):