diff options
author | jenglish <jenglish@flightlab.com> | 2010-09-02 17:46:09 (GMT) |
---|---|---|
committer | jenglish <jenglish@flightlab.com> | 2010-09-02 17:46:09 (GMT) |
commit | 00f70a0e40a3189a0ec3d5c553e3d259b988d5d6 (patch) | |
tree | 97431c9ad7744ff5618491c505f8a8153f7915f8 /library/ttk/vistaTheme.tcl | |
parent | 4fcfcfceb5d4a3d87c7385296e9a1a0cdd9c092c (diff) | |
download | tk-00f70a0e40a3189a0ec3d5c553e3d259b988d5d6.zip tk-00f70a0e40a3189a0ec3d5c553e3d259b988d5d6.tar.gz tk-00f70a0e40a3189a0ec3d5c553e3d259b988d5d6.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] \ ; |