aboutsummaryrefslogtreecommitdiffstats
path: root/lib/ui
diff options
context:
space:
mode:
authorTim Culverhouse <tim@timculverhouse.com>2024-02-12 06:26:25 -0600
committerRobin Jarry <robin@jarry.cc>2024-02-12 13:49:01 +0100
commit2236e8bbeb262e22bb9262390b803108122a7a94 (patch)
treee2b262aaf934436e55880fd683371aba70090847 /lib/ui
parent99aa51b7348b178984264ed8c940b983c1205cdd (diff)
downloadaerc-2236e8bbeb262e22bb9262390b803108122a7a94.tar.gz
aerc: set title using vaxis
Set the window title using Vaxis at UI initialization. Signed-off-by: Tim Culverhouse <tim@timculverhouse.com> Acked-by: Robin Jarry <robin@jarry.cc>
Diffstat (limited to 'lib/ui')
-rw-r--r--lib/ui/ui.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/ui/ui.go b/lib/ui/ui.go
index a7233f49..ce0a7e93 100644
--- a/lib/ui/ui.go
+++ b/lib/ui/ui.go
@@ -63,6 +63,7 @@ func Initialize(content DrawableInteractive) error {
state.content = content
state.vx = vx
state.ctx = NewContext(state.vx, onPopover)
+ vx.SetTitle("aerc")
Invalidate()
if beeper, ok := content.(DrawableInteractiveBeeper); ok {