mirror of
https://github.com/godotengine/godot.git
synced 2025-11-08 01:21:26 +00:00
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
This commit is contained in:
parent
07a466f6e6
commit
9acab32daa
75 changed files with 2219 additions and 214 deletions
|
|
@ -115,7 +115,7 @@ void SpriteFramesEditor::_load_pressed() {
|
|||
for(int i=0;i<extensions.size();i++)
|
||||
file->add_filter("*."+extensions[i]);
|
||||
|
||||
file->set_mode(FileDialog::MODE_OPEN_FILES);
|
||||
file->set_mode(EditorFileDialog::MODE_OPEN_FILES);
|
||||
|
||||
file->popup_centered_ratio();
|
||||
|
||||
|
|
@ -435,7 +435,7 @@ SpriteFramesEditor::SpriteFramesEditor() {
|
|||
_delete = memnew( Button );
|
||||
hbc->add_child(_delete);
|
||||
|
||||
file = memnew( FileDialog );
|
||||
file = memnew( EditorFileDialog );
|
||||
add_child(file);
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue