diff options
author | culler <culler> | 2019-03-10 16:11:29 (GMT) |
---|---|---|
committer | culler <culler> | 2019-03-10 16:11:29 (GMT) |
commit | 62af69aa8797a1c99370681d5e7d31784c119151 (patch) | |
tree | 70d54b9a55afa83fc98bb8bb2ae503e796219ff9 /library/ttk | |
parent | 576148dc6a8447e707fbf78f83980a626b02d96b (diff) | |
download | tk-62af69aa8797a1c99370681d5e7d31784c119151.zip tk-62af69aa8797a1c99370681d5e7d31784c119151.tar.gz tk-62af69aa8797a1c99370681d5e7d31784c119151.tar.bz2 |
Additional Treeview fix.
Diffstat (limited to 'library/ttk')
-rw-r--r-- | library/ttk/aquaTheme.tcl | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/library/ttk/aquaTheme.tcl b/library/ttk/aquaTheme.tcl index 6117b94..11574dc 100644 --- a/library/ttk/aquaTheme.tcl +++ b/library/ttk/aquaTheme.tcl @@ -50,15 +50,16 @@ namespace eval ttk::theme::aqua { # Treeview: ttk::style configure Heading -font TkHeadingFont - ttk::style configure Treeview -rowheight 18 -background White + ttk::style configure Treeview -rowheight 18 -background White \ + -foreground black ttk::style map Treeview \ -background { disabled systemDialogBackgroundInactive {selected background} systemHighlightSecondary selected systemHighlight} \ -foreground { - disabled black - !disabled black} + !active black + } # Enable animation for ttk::progressbar widget: ttk::style configure TProgressbar -period 100 -maxphase 255 |