diff options
author | Markus Ongyerth <aerc@ongy.net> | 2018-06-01 09:58:00 +0200 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2018-06-01 16:04:43 -0700 |
commit | 80e891a8024ac10a60daa790131e04f0326b0c73 (patch) | |
tree | 7a07cc26b2885e43e57e1672d2895c7fae2b173e /lib/ui/fill.go | |
parent | 3836d240c9aa26615e7d768a57436d171edc3831 (diff) | |
download | aerc-80e891a8024ac10a60daa790131e04f0326b0c73.tar.gz |
switch to tcell from termbox
This is a simple mostly straight forward switch to tcell in favor of termbox. It uses the tcell native api (not the compat layer) but does not make use of most features. Further changes should include moving to tcell's views.TextArea and the general built in widget behaviour instead of the current ad hoc implementation. Regression: Cursor isn't shown in ex-line
Diffstat (limited to 'lib/ui/fill.go')
-rw-r--r-- | lib/ui/fill.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/ui/fill.go b/lib/ui/fill.go index 3c6f0a5..4d36478 100644 --- a/lib/ui/fill.go +++ b/lib/ui/fill.go @@ -1,7 +1,7 @@ package ui import ( - tb "github.com/nsf/termbox-go" + "github.com/gdamore/tcell" ) type Fill rune @@ -13,7 +13,7 @@ func NewFill(f rune) Fill { func (f Fill) Draw(ctx *Context) { for x := 0; x < ctx.Width(); x += 1 { for y := 0; y < ctx.Height(); y += 1 { - ctx.SetCell(x, y, rune(f), tb.ColorDefault, tb.ColorDefault) + ctx.SetCell(x, y, rune(f), tcell.StyleDefault) } } } |