| 260 | } |
| 261 | |
| 262 | void Table::SetColumnSpacing( std::size_t index, float spacing ) { |
| 263 | if( index >= m_columns.size() ) { |
| 264 | return; |
| 265 | } |
| 266 | |
| 267 | m_columns[index].spacing = spacing; |
| 268 | |
| 269 | UpdateRequisitions(); |
| 270 | RequestResize(); |
| 271 | } |
| 272 | |
| 273 | void Table::SetRowSpacing( std::size_t index, float spacing ) { |
| 274 | if( index >= m_rows.size() ) { |