diff options
author | souplamp <camden.mcall@gmail.com> | 2022-11-23 18:30:20 -0600 |
---|---|---|
committer | souplamp <camden.mcall@gmail.com> | 2022-11-24 11:45:42 -0600 |
commit | 51cf968e5620042af9f8a879f1d53f8942c8531a (patch) | |
tree | f821caae65f4ff1a37a4c556f1db2a850c0ca8bf /editor/history_dock.cpp | |
parent | 7f8ecffa56834dce3ccbd736738b613d51133dea (diff) | |
download | redot-engine-51cf968e5620042af9f8a879f1d53f8942c8531a.tar.gz |
History dock singleton, set default editor layout, ready notification
- add the history dock to the default editor layout, so when a user does Editor -> Editor Layout -> Default the history dock will no longer disappear
- change the enter tree notification to a ready notification to prevent the history dock from trying to connect 'on_history_changed' signal everytime the dock is moved in the editor layout
Diffstat (limited to 'editor/history_dock.cpp')
-rw-r--r-- | editor/history_dock.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/history_dock.cpp b/editor/history_dock.cpp index 47b7e9f5d7..93599eff56 100644 --- a/editor/history_dock.cpp +++ b/editor/history_dock.cpp @@ -206,7 +206,7 @@ void HistoryDock::seek_history(int p_index) { void HistoryDock::_notification(int p_notification) { switch (p_notification) { - case NOTIFICATION_ENTER_TREE: { + case NOTIFICATION_READY: { EditorNode::get_singleton()->connect("scene_changed", callable_mp(this, &HistoryDock::on_history_changed)); } break; |