Jelajahi Sumber

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

Diego Mateos 2 tahun lalu
induk
melakukan
d6e9fad60e
1 mengubah file dengan 3 tambahan dan 2 penghapusan
  1. 3 2
      imgui_tables.cpp

+ 3 - 2
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()
 {