* (Re)Build the group list. * * @param owner The owner of the window */
| 225 | * @param owner The owner of the window |
| 226 | */ |
| 227 | void BuildGroupList(Owner owner) |
| 228 | { |
| 229 | if (!this->groups.NeedRebuild()) return; |
| 230 | |
| 231 | this->groups.clear(); |
| 232 | |
| 233 | BuildGuiGroupList(this->groups, true, owner, this->vli.vtype); |
| 234 | |
| 235 | this->groups.RebuildDone(); |
| 236 | } |
| 237 | |
| 238 | /** |
| 239 | * Compute tiny_step_height and column_size |
no test coverage detected