summaryrefslogtreecommitdiff
path: root/editor
diff options
context:
space:
mode:
authorkobewi <kobewi4e@gmail.com>2022-11-16 03:28:14 +0100
committerkobewi <kobewi4e@gmail.com>2022-11-16 03:28:14 +0100
commit45bdf4d6095bb065690e097f8728c323729d9bbd (patch)
tree9ac771c14d591e59fce88a379d66e8a9e1019f99 /editor
parent5993209b2649c93b56789bfc243c5a6046ee77ce (diff)
Add explicit name to History dock
Diffstat (limited to 'editor')
-rw-r--r--editor/history_dock.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/editor/history_dock.cpp b/editor/history_dock.cpp
index 57088a76cb..47b7e9f5d7 100644
--- a/editor/history_dock.cpp
+++ b/editor/history_dock.cpp
@@ -219,6 +219,8 @@ void HistoryDock::_notification(int p_notification) {
}
HistoryDock::HistoryDock() {
+ set_name("History");
+
ur_manager = EditorNode::get_undo_redo();
ur_manager->connect("history_changed", callable_mp(this, &HistoryDock::on_history_changed));
ur_manager->connect("version_changed", callable_mp(this, &HistoryDock::on_version_changed));