diff options
author | Drew DeVault <sir@cmpwn.com> | 2019-01-20 15:08:30 -0500 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2019-01-20 15:08:30 -0500 |
commit | 12284487b48690b1b6b0694b747c45512a9dbe2c (patch) | |
tree | 1710ece70d0334ce10c14fda8537d98ac7339706 /widgets | |
parent | a0c2b1caf03d0ed8b89de8402fcc14b003969e2c (diff) |
Implement Container interface in widgets/
Diffstat (limited to 'widgets')
-rw-r--r-- | widgets/account.go | 4 | ||||
-rw-r--r-- | widgets/aerc.go | 4 |
2 files changed, 8 insertions, 0 deletions
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) |