# HG changeset patch # User Yuya Nishihara <y...@tcha.org> # Date 1269870631 -32400 # Branch stable # Node ID a5c6bf9fe6e0ba0ed3f6b460860a848304436421 # Parent 744639a004a9663884a86dacc65ca0f16e41eecc status: show ignored files in dark gray
The color extension also uses gray (bold black of ansi color.) diff --git a/tortoisehg/hgtk/status.py b/tortoisehg/hgtk/status.py --- a/tortoisehg/hgtk/status.py +++ b/tortoisehg/hgtk/status.py @@ -923,7 +923,7 @@ class GStatus(gdialog.GWindow): elif stat == '?': text_renderer.set_property('foreground', '#AA5000') elif stat == 'I': - text_renderer.set_property('foreground', 'black') + text_renderer.set_property('foreground', '#404040') else: text_renderer.set_property('foreground', 'black') ------------------------------------------------------------------------------ Download Intel® Parallel Studio Eval Try the new software tools for yourself. Speed compiling, find bugs proactively, and fine-tune applications for parallel performance. See why Intel Parallel Studio got high marks during beta. http://p.sf.net/sfu/intel-sw-dev _______________________________________________ Tortoisehg-develop mailing list Tortoisehg-develop@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/tortoisehg-develop