| 146 | } |
| 147 | |
| 148 | void ComponentListComponent::updateSize() |
| 149 | { |
| 150 | mSize = Eigen::Vector2f(0, 0); |
| 151 | for(int x = 0; x < mGridSize.x(); x++) |
| 152 | mSize.x() += getColumnWidth(x); |
| 153 | for(int y = 0; y < mGridSize.y(); y++) |
| 154 | mSize.y() += getRowHeight(y); |
| 155 | } |
| 156 | |
| 157 | void ComponentListComponent::updateComponentOffsets() |
| 158 | { |
nothing calls this directly
no outgoing calls
no test coverage detected