From 12284487b48690b1b6b0694b747c45512a9dbe2c Mon Sep 17 00:00:00 2001 From: Drew DeVault Date: Sun, 20 Jan 2019 15:08:30 -0500 Subject: Implement Container interface in widgets/ --- widgets/account.go | 4 ++++ widgets/aerc.go | 4 ++++ 2 files changed, 8 insertions(+) (limited to 'widgets') diff --git a/widgets/account.go b/widgets/account.go index 54eb9e9..70686fb 100644 --- a/widgets/account.go +++ b/widgets/account.go @@ -86,6 +86,10 @@ func NewAccountView(conf *config.AccountConfig, return acct } +func (acct *AccountView) Children() []Drawable { + return acct.grid.Children() +} + func (acct *AccountView) OnInvalidate(onInvalidate func(d ui.Drawable)) { acct.grid.OnInvalidate(func(_ ui.Drawable) { onInvalidate(acct) diff --git a/widgets/aerc.go b/widgets/aerc.go index 9444c9f..1ee4994 100644 --- a/widgets/aerc.go +++ b/widgets/aerc.go @@ -49,6 +49,10 @@ func NewAerc(conf *config.AercConfig, logger *log.Logger) *Aerc { return aerc } +func (aerc *Aerc) Children() []Drawable { + return aerc.grid.Children() +} + func (aerc *Aerc) OnInvalidate(onInvalidate func(d libui.Drawable)) { aerc.grid.OnInvalidate(func(_ libui.Drawable) { onInvalidate(aerc) -- cgit v1.2.3