diff options
Diffstat (limited to 'library/ttk/winTheme.tcl')
-rw-r--r-- | library/ttk/winTheme.tcl | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/library/ttk/winTheme.tcl b/library/ttk/winTheme.tcl index 7ee19f5..ec7cf02 100644 --- a/library/ttk/winTheme.tcl +++ b/library/ttk/winTheme.tcl @@ -1,5 +1,5 @@ # -# $Id: winTheme.tcl,v 1.9 2008/11/29 00:43:48 patthoyts Exp $ +# $Id: winTheme.tcl,v 1.10 2010/09/02 17:47:06 jenglish Exp $ # # Settings for 'winnative' theme. # @@ -41,7 +41,13 @@ namespace eval ttk::theme::winnative { ttk::style map TCombobox \ -selectbackground [list !focus SystemWindow] \ -selectforeground [list !focus SystemWindowText] \ - -foreground [list {readonly focus} SystemHighlightText] \ + -fieldbackground [list \ + readonly SystemButtonFace \ + disabled SystemButtonFace] \ + -foreground [list \ + disabled SystemGrayText \ + {readonly focus} SystemHighlightText \ + ] \ -focusfill [list {readonly focus} SystemHighlight] \ ; |