diff options
author | Drew DeVault <sir@cmpwn.com> | 2019-01-13 15:10:47 -0500 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2019-01-13 15:10:47 -0500 |
commit | 3157897c1a20e5638feaf56e753b7886bc4ba267 (patch) | |
tree | d47b8ea1654a5627811df1e5ad5c5cfd172358fc /lib/ui/grid.go | |
parent | 755aa9af731c6faac64cbe3ad77324fb2850a7ae (diff) | |
download | aerc-3157897c1a20e5638feaf56e753b7886bc4ba267.tar.gz |
Add abstract list, update dirlist accordingly
Diffstat (limited to 'lib/ui/grid.go')
-rw-r--r-- | lib/ui/grid.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/ui/grid.go b/lib/ui/grid.go index 3c375ee..5fe6ab2 100644 --- a/lib/ui/grid.go +++ b/lib/ui/grid.go @@ -5,6 +5,7 @@ import ( "math" ) +// A container which arranges its children on a grid. type Grid struct { rows []GridSpec rowLayout []gridLayout |