Improve tooltips in the editor profiler to mention the script name

Co-authored-by: CrispyPin <crispin@tasa.se>
This commit is contained in:
Hugo Locurcio 2021-07-19 01:40:05 +02:00
parent b76dfde329
commit 0098e9243c
No known key found for this signature in database
GPG key ID: 39E8F8BE30B0A49C

View file

@ -356,7 +356,7 @@ void EditorProfiler::_update_frame() {
item->set_metadata(1, it.script);
item->set_metadata(2, it.line);
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;