diff options
author | Tim Culverhouse <tim@timculverhouse.com> | 2022-10-07 11:00:31 -0500 |
---|---|---|
committer | Robin Jarry <robin@jarry.cc> | 2022-10-12 22:16:40 +0200 |
commit | ba24e92062f1a9b38065d503fd1dde749c27a56c (patch) | |
tree | d1a2981f8f9bda50a070b50c688388fe2130f770 /widgets/getpasswd.go | |
parent | 34014d3ceeebe8a9c131213fa56d1977fbc26b4a (diff) | |
download | aerc-ba24e92062f1a9b38065d503fd1dde749c27a56c.tar.gz |
invalidatable: cleanup dead code
Remove invalidatable type and all associated calls. All items can
directly invalidate the UI.
Signed-off-by: Tim Culverhouse <tim@timculverhouse.com>
Acked-by: Robin Jarry <robin@jarry.cc>
Diffstat (limited to 'widgets/getpasswd.go')
-rw-r--r-- | widgets/getpasswd.go | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/widgets/getpasswd.go b/widgets/getpasswd.go index e6de75e1..70a2648d 100644 --- a/widgets/getpasswd.go +++ b/widgets/getpasswd.go @@ -10,7 +10,6 @@ import ( ) type GetPasswd struct { - ui.Invalidatable callback func(string, error) title string prompt string @@ -28,9 +27,6 @@ func NewGetPasswd(title string, prompt string, conf *config.AercConfig, conf: conf, input: ui.NewTextInput("", &conf.Ui).Password(true).Prompt("Password: "), } - getpasswd.input.OnInvalidate(func(_ ui.Drawable) { - getpasswd.Invalidate() - }) getpasswd.input.Focus(true) return getpasswd } @@ -47,7 +43,7 @@ func (gp *GetPasswd) Draw(ctx *ui.Context) { } func (gp *GetPasswd) Invalidate() { - gp.DoInvalidate(gp) + ui.Invalidate() } func (gp *GetPasswd) Event(event tcell.Event) bool { |