summaryrefslogtreecommitdiff
path: root/lib/ui/context.go
diff options
context:
space:
mode:
authory0ast <joost@joo.st>2020-11-30 22:07:03 +0000
committerReto Brunner <reto@labrat.space>2020-12-18 07:23:22 +0100
commit03650474e2190ef6e54413d433b3d1f63dc9993e (patch)
tree3b6f7df5a249eba9382de495553583795052bc3b /lib/ui/context.go
parentaf0a2b9a46e5d7f015682ebc1522bd421d7fe3dd (diff)
downloadaerc-03650474e2190ef6e54413d433b3d1f63dc9993e.zip
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 'lib/ui/context.go')
-rw-r--r--lib/ui/context.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/ui/context.go b/lib/ui/context.go
index 6bdf76a..7936f35 100644
--- a/lib/ui/context.go
+++ b/lib/ui/context.go
@@ -3,8 +3,8 @@ package ui
import (
"fmt"
- "github.com/gdamore/tcell"
- "github.com/gdamore/tcell/views"
+ "github.com/gdamore/tcell/v2"
+ "github.com/gdamore/tcell/v2/views"
"github.com/mattn/go-runewidth"
)