diff options
author | y0ast <joost@joo.st> | 2020-11-30 22:07:03 +0000 |
---|---|---|
committer | Reto Brunner <reto@labrat.space> | 2020-12-18 07:23:22 +0100 |
commit | 03650474e2190ef6e54413d433b3d1f63dc9993e (patch) | |
tree | 3b6f7df5a249eba9382de495553583795052bc3b /widgets/selector.go | |
parent | af0a2b9a46e5d7f015682ebc1522bd421d7fe3dd (diff) | |
download | aerc-03650474e2190ef6e54413d433b3d1f63dc9993e.tar.gz |
update tcell to v2 and enable TrueColor support
Also update to the tcell v2 PaletteColor api, which should keep the chosen
theme of the user intact.
Note, that if $TRUECOLOR is defined and a truecolor given, aerc will now stop
clipping the value to one of the theme colors.
Generally this is desired behaviour though.
Diffstat (limited to 'widgets/selector.go')
-rw-r--r-- | widgets/selector.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/widgets/selector.go b/widgets/selector.go index d19d38f6..196601bf 100644 --- a/widgets/selector.go +++ b/widgets/selector.go @@ -1,7 +1,7 @@ package widgets import ( - "github.com/gdamore/tcell" + "github.com/gdamore/tcell/v2" "git.sr.ht/~sircmpwn/aerc/config" "git.sr.ht/~sircmpwn/aerc/lib/ui" |