aboutsummaryrefslogtreecommitdiff
path: root/tools/editor/editor_node.h
diff options
context:
space:
mode:
authorRémi Verschelde2017-01-21 13:07:29 +0100
committerRémi Verschelde2017-01-21 13:07:32 +0100
commitc4d6e54e93431e94888c5594386bcd0aa22528ee (patch)
tree15a9dd7cad17c04a0dfa19ec12870d1b5804249d /tools/editor/editor_node.h
parentee0f53df52d88ca57079579f3f3e943e7e40f53a (diff)
downloadgodot-c4d6e54e93431e94888c5594386bcd0aa22528ee.tar.gz
godot-c4d6e54e93431e94888c5594386bcd0aa22528ee.tar.zst
godot-c4d6e54e93431e94888c5594386bcd0aa22528ee.zip
Remove Quick Filter Files and fix FS search hotkey
The new Quick Filter Files behaviour since 8b47e26 had not been implemented, so this implements it and makes it an editor hotkey instead of a menu entry. Fixes #7582.
Diffstat (limited to 'tools/editor/editor_node.h')
-rw-r--r--tools/editor/editor_node.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/tools/editor/editor_node.h b/tools/editor/editor_node.h
index 2baa9091f..fbba7ae7a 100644
--- a/tools/editor/editor_node.h
+++ b/tools/editor/editor_node.h
@@ -139,7 +139,6 @@ private:
FILE_OPEN_OLD_SCENE,
FILE_QUICK_OPEN_SCENE,
FILE_QUICK_OPEN_SCRIPT,
- FILE_QUICK_OPEN_FILE,
FILE_RUN_SCRIPT,
FILE_OPEN_PREV,
FILE_CLOSE,
@@ -280,7 +279,7 @@ private:
PropertyEditor *property_editor;
NodeDock *node_dock;
VBoxContainer *prop_editor_vb;
- FileSystemDock *scenes_dock;
+ FileSystemDock *filesystem_dock;
EditorRunNative *run_native;
HBoxContainer *search_bar;
@@ -706,7 +705,7 @@ public:
void request_instance_scene(const String &p_path);
void request_instance_scenes(const Vector<String>& p_files);
- FileSystemDock *get_scenes_dock();
+ FileSystemDock *get_filesystem_dock();
SceneTreeDock *get_scene_tree_dock();
static UndoRedo* get_undo_redo() { return &singleton->editor_data.get_undo_redo(); }