aboutsummaryrefslogtreecommitdiff
path: root/tools/editor/editor_profiler.cpp
diff options
context:
space:
mode:
authorJuan Linietsky2017-01-12 00:51:08 -0300
committerJuan Linietsky2017-01-12 00:51:08 -0300
commit83cb84753fb17d0c3e4dbe15388279ee93f97e3e (patch)
tree202b22d5061cc3b79d2ffca8280d50e1ad107a72 /tools/editor/editor_profiler.cpp
parentc84d618b4ea944e5c386d21f45265f9cb6fa783e (diff)
downloadgodot-83cb84753fb17d0c3e4dbe15388279ee93f97e3e.tar.gz
godot-83cb84753fb17d0c3e4dbe15388279ee93f97e3e.tar.zst
godot-83cb84753fb17d0c3e4dbe15388279ee93f97e3e.zip
Renamed most signals so they refer to:
-An action being requested to the user in present tense: (ie, draw, gui_input, etc) -A notification that an action happened, in past tense (ie, area_entered, modal_closed, etc).
Diffstat (limited to 'tools/editor/editor_profiler.cpp')
-rw-r--r--tools/editor/editor_profiler.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/editor/editor_profiler.cpp b/tools/editor/editor_profiler.cpp
index 162e1d05f..c527aae38 100644
--- a/tools/editor/editor_profiler.cpp
+++ b/tools/editor/editor_profiler.cpp
@@ -714,7 +714,7 @@ EditorProfiler::EditorProfiler()
//graph->set_ignore_mouse(false);
graph->connect("draw",this,"_graph_tex_draw");
graph->connect("gui_input",this,"_graph_tex_input");
- graph->connect("mouse_exit",this,"_graph_tex_mouse_exit");
+ graph->connect("mouse_exited",this,"_graph_tex_mouse_exit");
h_split->add_child(graph);
graph->set_h_size_flags(SIZE_EXPAND_FILL);