aboutsummaryrefslogtreecommitdiffstats
path: root/app/account-wizard.go
diff options
context:
space:
mode:
authorTim Culverhouse <tim@timculverhouse.com>2024-02-12 06:26:18 -0600
committerRobin Jarry <robin@jarry.cc>2024-02-12 13:48:47 +0100
commitf001f65240f85f0af91703dbcc0b068c0797297a (patch)
treec3e7e60f6000137a766b0c2313ac4f27009fffa6 /app/account-wizard.go
parent0fd5f4115792e706f73202d77fac404c0033333b (diff)
downloadaerc-f001f65240f85f0af91703dbcc0b068c0797297a.tar.gz
fill: replace tcell.Style with vaxis.Style
Replace the Fill implementation with vaxis style objects Signed-off-by: Tim Culverhouse <tim@timculverhouse.com> Acked-by: Robin Jarry <robin@jarry.cc>
Diffstat (limited to 'app/account-wizard.go')
-rw-r--r--app/account-wizard.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/account-wizard.go b/app/account-wizard.go
index e47acc53..0fd426ca 100644
--- a/app/account-wizard.go
+++ b/app/account-wizard.go
@@ -128,7 +128,7 @@ func (s *configStep) Grid() *ui.Grid {
grid := ui.NewGrid().Rows(spec).Columns([]ui.GridSpec{justify})
intro := ui.NewText(introduction, config.Ui.GetStyle(config.STYLE_DEFAULT))
- fill := ui.NewFill(' ', tcell.StyleDefault)
+ fill := ui.NewFill(' ', vaxis.Style{})
grid.AddChild(fill).At(0, 0)
grid.AddChild(intro).At(1, 0)