From 7b5a1f6481b8df22ffb2dd2ec713b470ffc2a980 Mon Sep 17 00:00:00 2001 From: SaracenOne Date: Tue, 12 Sep 2017 18:23:16 +0100 Subject: [PATCH] Add option to always show directories in filesystem dock --- editor/editor_settings.cpp | 3 +++ editor/filesystem_dock.cpp | 4 +++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/editor/editor_settings.cpp b/editor/editor_settings.cpp index 50cee6d892f..4e6659a298d 100644 --- a/editor/editor_settings.cpp +++ b/editor/editor_settings.cpp @@ -729,6 +729,9 @@ void EditorSettings::_load_defaults(Ref p_extra_config) { hints["docks/filesystem/display_mode"] = PropertyInfo(Variant::INT, "docks/filesystem/display_mode", PROPERTY_HINT_ENUM, "Thumbnails,List"); set("docks/filesystem/thumbnail_size", 64); hints["docks/filesystem/thumbnail_size"] = PropertyInfo(Variant::INT, "docks/filesystem/thumbnail_size", PROPERTY_HINT_RANGE, "32,128,16"); + set("docks/filesystem/display_mode", 0); + hints["docks/filesystem/display_mode"] = PropertyInfo(Variant::INT, "docks/filesystem/display_mode", PROPERTY_HINT_ENUM, "Thumbnails,List"); + set("docks/filesystem/always_show_folders", true); set("editors/animation/autorename_animation_tracks", true); set("editors/animation/confirm_insert_track", true); diff --git a/editor/filesystem_dock.cpp b/editor/filesystem_dock.cpp index a66d1724a10..84e0e0e3ded 100644 --- a/editor/filesystem_dock.cpp +++ b/editor/filesystem_dock.cpp @@ -426,8 +426,10 @@ void FileSystemDock::_update_files(bool p_keep_selection) { Ref file_thumbnail; Ref file_thumbnail_broken; + bool always_show_folders = EditorSettings::get_singleton()->get("docks/filesystem/always_show_folders"); + bool use_thumbnails = (display_mode == DISPLAY_THUMBNAILS); - bool use_folders = search_box->get_text().length() == 0 && split_mode; + bool use_folders = search_box->get_text().length() == 0 && (split_mode || always_show_folders); if (use_thumbnails) { //thumbnails