diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2018-05-08 07:36:24 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-08 07:36:24 +0200 |
commit | 64cb61619ae76325b2450d9a2570bf6471248450 (patch) | |
tree | 6c071b9146b6b461f9a64202d9c1fa21c77c037b /editor/scene_tree_dock.h | |
parent | bdad359d99c2c139723b2ea0f3ea76e550d68bfa (diff) | |
parent | e58b10c883056930e966e842fad6bc1bbcd7979c (diff) | |
download | redot-engine-64cb61619ae76325b2450d9a2570bf6471248450.tar.gz |
Merge pull request #15928 from StateOff/feature_batch_rename
Implements "Batch Rename" editor tool.
Diffstat (limited to 'editor/scene_tree_dock.h')
-rw-r--r-- | editor/scene_tree_dock.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/editor/scene_tree_dock.h b/editor/scene_tree_dock.h index a4f36e31ee..fd7d616a80 100644 --- a/editor/scene_tree_dock.h +++ b/editor/scene_tree_dock.h @@ -36,6 +36,7 @@ #include "editor/editor_data.h" #include "editor/editor_sub_scene.h" #include "editor/groups_editor.h" +#include "editor/rename_dialog.h" #include "editor/reparent_dialog.h" #include "editor/script_create_dialog.h" #include "scene/animation/animation_player.h" @@ -58,6 +59,7 @@ class SceneTreeDock : public VBoxContainer { TOOL_NEW, TOOL_INSTANCE, + TOOL_BATCH_RENAME, TOOL_REPLACE, TOOL_ATTACH_SCRIPT, TOOL_CLEAR_SCRIPT, @@ -90,6 +92,7 @@ class SceneTreeDock : public VBoxContainer { int current_option; CreateDialog *create_dialog; + RenameDialog *rename_dialog; ToolButton *button_add; ToolButton *button_instance; |