diff options
author | culler <culler> | 2019-03-30 18:46:43 (GMT) |
---|---|---|
committer | culler <culler> | 2019-03-30 18:46:43 (GMT) |
commit | 4773fcfe6b551fe3907dec1f63dcbc69af4777a5 (patch) | |
tree | b12ef49108fc15903019ac4ea94461a889d83e7f /library/ttk | |
parent | 8c5d63d069fe7f1ddd8bca295e5b07391894fe5d (diff) | |
download | tk-4773fcfe6b551fe3907dec1f63dcbc69af4777a5.zip tk-4773fcfe6b551fe3907dec1f63dcbc69af4777a5.tar.gz tk-4773fcfe6b551fe3907dec1f63dcbc69af4777a5.tar.bz2 |
Added missing map for the Treeview background in selected state.
Diffstat (limited to 'library/ttk')
-rw-r--r-- | library/ttk/aquaTheme.tcl | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/library/ttk/aquaTheme.tcl b/library/ttk/aquaTheme.tcl index 646fb83..1e7745a 100644 --- a/library/ttk/aquaTheme.tcl +++ b/library/ttk/aquaTheme.tcl @@ -111,9 +111,13 @@ namespace eval ttk::theme::aqua { # Treeview: ttk::style configure Heading -font TkHeadingFont -foreground black ttk::style configure Treeview -rowheight 18 \ - -fieldbackground systemTextBackgroundColor \ -background systemTextBackgroundColor \ - -foreground systemTextColor + -foreground systemTextColor \ + -fieldbackground systemTextBackgroundColor + ttk::style map Treeview \ + -background { + selected systemSelectedTextBackgroundColor + } # Enable animation for ttk::progressbar widget: ttk::style configure TProgressbar -period 100 -maxphase 255 |