about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--widgets/aerc.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/widgets/aerc.go b/widgets/aerc.go
index e6d2525..b7071e1 100644
--- a/widgets/aerc.go
+++ b/widgets/aerc.go
@@ -165,8 +165,8 @@ func (aerc *Aerc) Focus(focus bool) {
 func (aerc *Aerc) Draw(ctx *ui.Context) {
 	aerc.grid.Draw(ctx)
 	if aerc.getpasswd != nil {
-		aerc.getpasswd.Draw(ctx.Subcontext(4, 4,
-			ctx.Width()-8, ctx.Height()-8))
+		aerc.getpasswd.Draw(ctx.Subcontext(4, ctx.Height()/2-2,
+			ctx.Width()-8, 4))
 	}
 }