diff options
author | Pratyush Yadav <me@yadavpratyush.com> | 2020-12-18 01:52:26 +0530 |
---|---|---|
committer | Pratyush Yadav <me@yadavpratyush.com> | 2020-12-18 01:52:26 +0530 |
commit | 62aed982fdc8a961ae8addfad339e8dfcd28b248 (patch) | |
tree | 6547dbded9bb8729961a26b8847ac948e1a05d4f /lib/themed.tcl | |
parent | Merge branch 'rj/clean-speedup' (diff) | |
parent | git-gui: Fix selected text colors (diff) | |
download | tgif-62aed982fdc8a961ae8addfad339e8dfcd28b248.tar.xz |
Merge branch 'st/selected-text-colors'
Set colors for selected text properly.
* st/selected-text-colors:
git-gui: Fix selected text colors
Diffstat (limited to 'lib/themed.tcl')
-rw-r--r-- | lib/themed.tcl | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/themed.tcl b/lib/themed.tcl index 02aae90144..244c061391 100644 --- a/lib/themed.tcl +++ b/lib/themed.tcl @@ -34,8 +34,10 @@ namespace eval color { } add_option *Text.Background $text_bg add_option *Text.Foreground $text_fg - add_option *Text.HighlightBackground $base_bg - add_option *Text.HighlightColor $select_bg + add_option *Text.selectBackground $select_bg + add_option *Text.selectForeground $select_fg + add_option *Text.inactiveSelectBackground $select_bg + add_option *Text.inactiveSelectForeground $select_fg } } |