75KUI4W7LOCQRLGVL76AJ7NCDEUZD2RIJQMWR7XHEYU2RNHOHWQAC
// TODO this specific handling should be done within Update instead
cols := m.table.Columns()
for i, col := range cols {
if col.Title == "Name" {
col.Width = m.config.getInnerWidth() - 4 - 8 - 2
cols[i] = col
}
}
m.table.SetColumns(cols)
m.table.SetHeight(m.config.getInnerHeight())
m.table.SetWidth(m.config.size.Width)