# HG changeset patch
# User Yuya Nishihara <y...@tcha.org>
# Date 1269877547 -32400
# Node ID 923eb66598b14a0e819491809cd9e85e09126248
# Parent  0979c4f0d9f1a6213d6c353891c81f7b124d3e31
gtklib: added color constant DGRAY for dark gray

It's used as the color of ignored files in status window.

diff --git a/tortoisehg/hgtk/gtklib.py b/tortoisehg/hgtk/gtklib.py
--- a/tortoisehg/hgtk/gtklib.py
+++ b/tortoisehg/hgtk/gtklib.py
@@ -40,6 +40,7 @@ DBLUE = '#000090'
 DYELLOW = '#6A6A00'
 DORANGE = '#AA5000'
 # DORANGE = '#FF8000'
+DGRAY = '#404040'
 
 PRED = '#ffcccc'
 PGREEN = '#aaffaa'
diff --git a/tortoisehg/hgtk/status.py b/tortoisehg/hgtk/status.py
--- a/tortoisehg/hgtk/status.py
+++ b/tortoisehg/hgtk/status.py
@@ -924,7 +924,7 @@ class GStatus(gdialog.GWindow):
         elif stat == '?':
             text_renderer.set_property('foreground', gtklib.DORANGE)
         elif stat == 'I':
-            text_renderer.set_property('foreground', '#404040')
+            text_renderer.set_property('foreground', gtklib.DGRAY)
         else:
             text_renderer.set_property('foreground', gtklib.NORMAL)
 

------------------------------------------------------------------------------
Download Intel&#174; 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

Reply via email to