diff options
author | Drew DeVault <sir@cmpwn.com> | 2018-02-27 21:17:26 -0500 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2018-02-27 21:17:26 -0500 |
commit | cab3771e17286788913255a6abe858b476166837 (patch) | |
tree | 85c626c779e380bb6a9d7ddd6cba69ef33cf919d /lib/ui/interactive.go | |
parent | a073d7613fac7c79b7909d93a0dd7bfea05d5c9d (diff) | |
download | aerc-cab3771e17286788913255a6abe858b476166837.tar.gz |
Pull main aerc UI into widget
Diffstat (limited to 'lib/ui/interactive.go')
-rw-r--r-- | lib/ui/interactive.go | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/ui/interactive.go b/lib/ui/interactive.go index 8bdf592..efab828 100644 --- a/lib/ui/interactive.go +++ b/lib/ui/interactive.go @@ -13,3 +13,8 @@ type Simulator interface { // Queues up the given input events for simulation Simulate(events []tb.Event) } + +type DrawableInteractive interface { + Drawable + Interactive +} |