diff options
author | Tim Culverhouse <tim@timculverhouse.com> | 2024-02-12 06:26:20 -0600 |
---|---|---|
committer | Robin Jarry <robin@jarry.cc> | 2024-02-12 13:48:50 +0100 |
commit | a60f2c19a0a962167067547c2a74988012cf2f44 (patch) | |
tree | e3c98d3d0f7ac934eb6ee0c4cb19b1a1377cc2a8 /app/compose.go | |
parent | cdc90afbaa1a6ff7d0900b6ce904a1e51e31bcd1 (diff) | |
download | aerc-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/compose.go')
-rw-r--r-- | app/compose.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/compose.go b/app/compose.go index d56f15eb..7bc3fd66 100644 --- a/app/compose.go +++ b/app/compose.go @@ -1470,7 +1470,7 @@ func (c *Composer) updateGrid() { borderChar := c.acct.UiConfig().BorderCharHorizontal grid.AddChild(heditors).At(0, 0) grid.AddChild(c.crypto).At(1, 0) - grid.AddChild(ui.NewFill(borderChar, tcell.VaxisStyle(borderStyle))).At(2, 0) + grid.AddChild(ui.NewFill(borderChar, borderStyle)).At(2, 0) if c.review != nil { grid.AddChild(c.review).At(3, 0) } else if c.editor != nil { |