Browse Source

Merge pull request #25354 from Ranoller/patch-5

Profiler list functions from max to less expensive
Rémi Verschelde 6 years ago
parent
commit
d9268265dc
1 changed files with 1 additions and 1 deletions
  1. 1 1
      editor/editor_profiler.cpp

+ 1 - 1
editor/editor_profiler.cpp

@@ -392,7 +392,7 @@ void EditorProfiler::_update_frame() {
 			category->set_custom_color(0, _get_color_from_signature(m.categories[i].signature));
 		}
 
-		for (int j = 0; j < m.categories[i].items.size(); j++) {
+		for (int j = m.categories[i].items.size() - 1; j >= 0; j--) {
 			const Metric::Category::Item &it = m.categories[i].items[j];
 
 			TreeItem *item = variables->create_item(category);