diff options
author | jenglish <jenglish@flightlab.com> | 2010-09-02 17:47:06 (GMT) |
---|---|---|
committer | jenglish <jenglish@flightlab.com> | 2010-09-02 17:47:06 (GMT) |
commit | 76689c2d13e9501b11c6154798fa38be7141b130 (patch) | |
tree | 79dfb9e41e627072dca9b31d72cb6118827739c6 /library/ttk/vistaTheme.tcl | |
parent | b84640d55124b4ed822ec8fdcb35b4c3d45eec9f (diff) | |
download | tk-76689c2d13e9501b11c6154798fa38be7141b130.zip tk-76689c2d13e9501b11c6154798fa38be7141b130.tar.gz tk-76689c2d13e9501b11c6154798fa38be7141b130.tar.bz2 |
library/ttk/winTheme.tcl, library/ttk/xpTheme.tcl, library/ttk/vistaTheme.tcl:
Specify disabled combobox text foreground color [#3057573].
Diffstat (limited to 'library/ttk/vistaTheme.tcl')
-rw-r--r-- | library/ttk/vistaTheme.tcl | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/library/ttk/vistaTheme.tcl b/library/ttk/vistaTheme.tcl index 107f227..811a1a4 100644 --- a/library/ttk/vistaTheme.tcl +++ b/library/ttk/vistaTheme.tcl @@ -92,7 +92,10 @@ namespace eval ttk::theme::vista { ttk::style map TCombobox \ -selectbackground [list !focus SystemWindow] \ -selectforeground [list !focus SystemWindowText] \ - -foreground [list {readonly focus} SystemHighlightText] \ + -foreground [list \ + disabled SystemGrayText \ + {readonly focus} SystemHighlightText \ + ] \ -focusfill [list {readonly focus} SystemHighlight] \ ; |