aboutsummaryrefslogtreecommitdiffstats
path: root/app/msglist.go
diff options
context:
space:
mode:
authorTim Culverhouse <tim@timculverhouse.com>2024-02-12 06:26:20 -0600
committerRobin Jarry <robin@jarry.cc>2024-02-12 13:48:50 +0100
commita60f2c19a0a962167067547c2a74988012cf2f44 (patch)
treee3c98d3d0f7ac934eb6ee0c4cb19b1a1377cc2a8 /app/msglist.go
parentcdc90afbaa1a6ff7d0900b6ce904a1e51e31bcd1 (diff)
downloadaerc-a60f2c19a0a962167067547c2a74988012cf2f44.tar.gz
style: use vaxis style everywhere
Replace all tcell.Style objects with vaxis.Style objects Signed-off-by: Tim Culverhouse <tim@timculverhouse.com> Acked-by: Robin Jarry <robin@jarry.cc>
Diffstat (limited to 'app/msglist.go')
-rw-r--r--app/msglist.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/msglist.go b/app/msglist.go
index 49529811..ac0012b4 100644
--- a/app/msglist.go
+++ b/app/msglist.go
@@ -124,8 +124,8 @@ func (ml *MessageList) Draw(ctx *ui.Context) {
return false
}
- getRowStyle := func(t *ui.Table, r int) tcell.Style {
- var style tcell.Style
+ getRowStyle := func(t *ui.Table, r int) vaxis.Style {
+ var style vaxis.Style
row := &t.Rows[r]
params, _ := row.Priv.(messageRowParams)
if params.uid == store.SelectedUid() {