|
@@ -34,8 +34,7 @@ void EditorFileDialog::_notification(int p_what) {
|
|
fav_down->set_icon(get_icon("MoveDown","EditorIcons"));
|
|
fav_down->set_icon(get_icon("MoveDown","EditorIcons"));
|
|
fav_rm->set_icon(get_icon("RemoveSmall","EditorIcons"));
|
|
fav_rm->set_icon(get_icon("RemoveSmall","EditorIcons"));
|
|
|
|
|
|
- }
|
|
|
|
- if (p_what==NOTIFICATION_PROCESS) {
|
|
|
|
|
|
+ } else if (p_what==NOTIFICATION_PROCESS) {
|
|
|
|
|
|
if (preview_waiting) {
|
|
if (preview_waiting) {
|
|
preview_wheel_timeout-=get_process_delta_time();
|
|
preview_wheel_timeout-=get_process_delta_time();
|
|
@@ -48,12 +47,17 @@ void EditorFileDialog::_notification(int p_what) {
|
|
preview_wheel_timeout=0.1;
|
|
preview_wheel_timeout=0.1;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
- }
|
|
|
|
-
|
|
|
|
- if (p_what==NOTIFICATION_DRAW) {
|
|
|
|
|
|
+ } else if (p_what==NOTIFICATION_DRAW) {
|
|
|
|
|
|
//RID ci = get_canvas_item();
|
|
//RID ci = get_canvas_item();
|
|
//get_stylebox("panel","PopupMenu")->draw(ci,Rect2(Point2(),get_size()));
|
|
//get_stylebox("panel","PopupMenu")->draw(ci,Rect2(Point2(),get_size()));
|
|
|
|
+ } else if (p_what==EditorSettings::NOTIFICATION_EDITOR_SETTINGS_CHANGED) {
|
|
|
|
+
|
|
|
|
+ bool show_hidden = EditorSettings::get_singleton()->get("file_dialog/show_hidden_files");
|
|
|
|
+
|
|
|
|
+ if (show_hidden != show_hidden_files) {
|
|
|
|
+ set_show_hidden_files(show_hidden);
|
|
|
|
+ }
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
@@ -1013,7 +1017,7 @@ void EditorFileDialog::_go_forward(){
|
|
|
|
|
|
}
|
|
}
|
|
|
|
|
|
-bool EditorFileDialog::default_show_hidden_files=true;
|
|
|
|
|
|
+bool EditorFileDialog::default_show_hidden_files=false;
|
|
|
|
|
|
void EditorFileDialog::set_display_mode(DisplayMode p_mode) {
|
|
void EditorFileDialog::set_display_mode(DisplayMode p_mode) {
|
|
|
|
|
|
@@ -1142,7 +1146,7 @@ void EditorFileDialog::_save_to_recent() {
|
|
|
|
|
|
EditorFileDialog::EditorFileDialog() {
|
|
EditorFileDialog::EditorFileDialog() {
|
|
|
|
|
|
- show_hidden_files=true;
|
|
|
|
|
|
+ show_hidden_files=default_show_hidden_files;
|
|
display_mode=DISPLAY_THUMBNAILS;
|
|
display_mode=DISPLAY_THUMBNAILS;
|
|
local_history_pos=0;
|
|
local_history_pos=0;
|
|
|
|
|