add ContainerSource interface, fix secondary sort method

This commit is contained in:
Bradley Cicenas
2017-02-26 21:12:28 +00:00
parent 4709624b17
commit 05b50af87b
5 changed files with 43 additions and 28 deletions

View File

@@ -36,7 +36,7 @@ func (c *Container) Expand() {
var curWidgets widgets.ContainerWidgets
curWidgets = c.widgets
c.widgets = widgets.NewExpanded(c.ShortID(), c.ShortName())
c.widgets = widgets.NewExpanded(c.ShortID(), c.name)
c.widgets.Render(0, 0)
c.widgets = curWidgets
}