diff options
author | culler <culler> | 2021-03-05 16:15:21 (GMT) |
---|---|---|
committer | culler <culler> | 2021-03-05 16:15:21 (GMT) |
commit | d9aeb17bc875cb8fc6d1575fd094c619385526e7 (patch) | |
tree | 27c46e5867252908325f8f1e55da822f4283a5e7 /library/ttk | |
parent | 088f49b796a13ff9e4da248780bf3dd9fbe857f9 (diff) | |
download | tk-d9aeb17bc875cb8fc6d1575fd094c619385526e7.zip tk-d9aeb17bc875cb8fc6d1575fd094c619385526e7.tar.gz tk-d9aeb17bc875cb8fc6d1575fd094c619385526e7.tar.bz2 |
Fix [58222c42b3]: ttk::entry has wrong default background/fieldbackground
Diffstat (limited to 'library/ttk')
-rw-r--r-- | library/ttk/aquaTheme.tcl | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/library/ttk/aquaTheme.tcl b/library/ttk/aquaTheme.tcl index 3ccdd70..bba1aae 100644 --- a/library/ttk/aquaTheme.tcl +++ b/library/ttk/aquaTheme.tcl @@ -42,6 +42,10 @@ namespace eval ttk::theme::aqua { # so we only need to specify !focus.) # Entry + ttk::style configure TEntry \ + -foreground systemTextColor \ + -background systemTextBackgroundColor \ + -fieldbackground systemTextBackgroundColor ttk::style map TEntry \ -foreground { disabled systemDisabledControlTextColor |