Explorar o código

Merge pull request #50599 from Calinou/editor-profiler-improve-tooltip

Improve tooltips in the editor profiler to mention the script name
Rémi Verschelde %!s(int64=4) %!d(string=hai) anos
pai
achega
617327118b
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      editor/debugger/editor_profiler.cpp

+ 1 - 1
editor/debugger/editor_profiler.cpp

@@ -356,7 +356,7 @@ void EditorProfiler::_update_frame() {
 			item->set_metadata(1, it.script);
 			item->set_metadata(1, it.script);
 			item->set_metadata(2, it.line);
 			item->set_metadata(2, it.line);
 			item->set_text_align(2, TreeItem::ALIGN_RIGHT);
 			item->set_text_align(2, TreeItem::ALIGN_RIGHT);
-			item->set_tooltip(0, it.script + ":" + itos(it.line));
+			item->set_tooltip(0, it.name + "\n" + it.script + ":" + itos(it.line));
 
 
 			float time = dtime == DISPLAY_SELF_TIME ? it.self : it.total;
 			float time = dtime == DISPLAY_SELF_TIME ? it.self : it.total;