restructure columns in multiview

This commit is contained in:
Bradley Cicenas
2016-12-27 15:37:08 +00:00
parent b7823bda5c
commit 574bcb19fe
2 changed files with 6 additions and 6 deletions

View File

@@ -17,11 +17,11 @@ type Widgets struct {
func (w *Widgets) MakeRow() *ui.Row {
return ui.NewRow(
ui.NewCol(1, 0, w.name),
ui.NewCol(1, 0, w.cid),
ui.NewCol(2, 0, w.cpu),
ui.NewCol(2, 0, w.memory),
ui.NewCol(2, 0, w.net),
ui.NewCol(2, 0, w.name),
)
}