Merge pull request #240 from stokito/name_width

#128 Set column Name to fixed width 30
This commit is contained in:
bradley
2020-11-29 09:19:07 -05:00
committed by GitHub

View File

@ -14,7 +14,9 @@ type NameCol struct {
}
func NewNameCol() CompactCol {
return &NameCol{NewTextCol("NAME")}
c := &NameCol{NewTextCol("NAME")}
c.fWidth = 30
return c
}
func (w *NameCol) SetMeta(m models.Meta) {