#128 Set column Name to fixed width 30

This commit is contained in:
Sergey Ponomarev 2020-11-27 23:12:16 +02:00
parent 117c3bc7b5
commit c2401cb33a

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) {