| 238 | } |
| 239 | |
| 240 | void Table::SetColumnSpacings( float spacing ) { |
| 241 | for( auto& column : m_columns ) { |
| 242 | column.spacing = spacing; |
| 243 | } |
| 244 | |
| 245 | m_general_spacings.x = spacing; |
| 246 | |
| 247 | UpdateRequisitions(); |
| 248 | RequestResize(); |
| 249 | } |
| 250 | |
| 251 | void Table::SetRowSpacings( float spacing ) { |
| 252 | for( auto& row : m_rows ) { |