Tables: Fix typo in TableGetSortSpecs comment + amend comment. (#6755)

features/potocpav-newer-lines-2
Diego Mateos ago%!(EXTRA string=2 years) committed by GitHub
parent 82d177ccbd
commit d6e9fad60e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 5
      imgui_tables.cpp

@ -2673,8 +2673,9 @@ void ImGui::TableDrawBorders(ImGuiTable* table)
//-------------------------------------------------------------------------
// Return NULL if no sort specs (most often when ImGuiTableFlags_Sortable is not set)
// You can sort your data again when 'SpecsChanged == true'. It will be true with sorting specs have changed since
// last call, or the first time.
// When 'sort_specs->SpecsDirty == true' you should sort your data. It will be true when sorting specs have
// changed since last call, or the first time. Make sure to set 'SpecsDirty = false' after sorting,
// else you may wastefully sort your data every frame!
// Lifetime: don't hold on this pointer over multiple frames or past any subsequent call to BeginTable()!
ImGuiTableSortSpecs* ImGui::TableGetSortSpecs()
{

Loading…
Cancel
Save