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_log.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_log.cpp')
| -rw-r--r-- | tools/editor/editor_log.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/editor/editor_log.cpp b/tools/editor/editor_log.cpp index 06459928f..16dfb7afb 100644 --- a/tools/editor/editor_log.cpp +++ b/tools/editor/editor_log.cpp @@ -200,7 +200,7 @@ EditorLog::EditorLog() { pc = memnew( PanelContainer ); ec->add_child(pc); pc->set_area_as_parent_rect(); - pc->connect("enter_tree", this, "_override_logger_styles"); + pc->connect("tree_entered", this, "_override_logger_styles"); log = memnew( RichTextLabel ); log->set_scroll_follow(true); |
