aboutsummaryrefslogtreecommitdiff
path: root/tools/editor/script_create_dialog.h
diff options
context:
space:
mode:
authorJuan Linietsky2015-06-06 09:44:38 -0300
committerJuan Linietsky2015-06-06 09:44:38 -0300
commit9acab32daaea38e09c4d74d5f0340479d3dd41bd (patch)
treec978e8206cc9319f32c71168fb612fc30b4ec809 /tools/editor/script_create_dialog.h
parent07a466f6e6dd28bbb8b917690b634070537f1613 (diff)
downloadgodot-9acab32daaea38e09c4d74d5f0340479d3dd41bd.tar.gz
godot-9acab32daaea38e09c4d74d5f0340479d3dd41bd.tar.zst
godot-9acab32daaea38e09c4d74d5f0340479d3dd41bd.zip
new file dialog!
-ItemList control for easier lists/thumbnails -New file dialog, with support for thumbnails, favorites, recent places, etc -Moved .fscache out of the project, no more bugs due to committed/pulled .fscache! -Dir dialog now sorts directories
Diffstat (limited to 'tools/editor/script_create_dialog.h')
-rw-r--r--tools/editor/script_create_dialog.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/editor/script_create_dialog.h b/tools/editor/script_create_dialog.h
index 61f5df434..59fde8fbd 100644
--- a/tools/editor/script_create_dialog.h
+++ b/tools/editor/script_create_dialog.h
@@ -32,7 +32,7 @@
#include "scene/gui/dialogs.h"
#include "scene/gui/line_edit.h"
#include "scene/gui/option_button.h"
-#include "scene/gui/file_dialog.h"
+#include "tools/editor/editor_file_dialog.h"
#include "scene/gui/check_button.h"
class ScriptCreateDialog : public ConfirmationDialog {
@@ -44,7 +44,7 @@ class ScriptCreateDialog : public ConfirmationDialog {
LineEdit *parent_name;
OptionButton *language_menu;
LineEdit *file_path;
- FileDialog *file_browse;
+ EditorFileDialog *file_browse;
CheckButton *internal;
VBoxContainer *path_vb;
AcceptDialog *alert;