MCPcopy Create free account
hub / github.com/TankOs/SFGUI / SetColumnSpacing

Method SetColumnSpacing

src/SFGUI/Table.cpp:262–271  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

260}
261
262void 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
273void Table::SetRowSpacing( std::size_t index, float spacing ) {
274 if( index >= m_rows.size() ) {

Callers

nothing calls this directly

Calls 1

sizeMethod · 0.80

Tested by

no test coverage detected