diff options
| author | Juan Linietsky | 2017-01-12 00:51:08 -0300 |
|---|---|---|
| committer | Juan Linietsky | 2017-01-12 00:51:08 -0300 |
| commit | 83cb84753fb17d0c3e4dbe15388279ee93f97e3e (patch) | |
| tree | 202b22d5061cc3b79d2ffca8280d50e1ad107a72 /tools/editor/editor_profiler.cpp | |
| parent | c84d618b4ea944e5c386d21f45265f9cb6fa783e (diff) | |
| download | godot-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.cpp | 2 |
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); |
