aboutsummaryrefslogtreecommitdiff
path: root/scene/gui/file_dialog.cpp
diff options
context:
space:
mode:
authorneikeq2015-12-04 19:33:30 +0100
committerneikeq2015-12-04 19:33:30 +0100
commit71eaa2d547082212d32f78eb4d9580a276a0510f (patch)
tree3f5744d058fc12f9a34c01edeeb1dbf8736531b1 /scene/gui/file_dialog.cpp
parent35fa048af555e1f8411a2034706e9e452ce2f399 (diff)
downloadgodot-71eaa2d547082212d32f78eb4d9580a276a0510f.tar.gz
godot-71eaa2d547082212d32f78eb4d9580a276a0510f.tar.zst
godot-71eaa2d547082212d32f78eb4d9580a276a0510f.zip
Diffstat (limited to 'scene/gui/file_dialog.cpp')
-rw-r--r--scene/gui/file_dialog.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/scene/gui/file_dialog.cpp b/scene/gui/file_dialog.cpp
index 8e428fd71..75a1cb92e 100644
--- a/scene/gui/file_dialog.cpp
+++ b/scene/gui/file_dialog.cpp
@@ -46,6 +46,11 @@ VBoxContainer *FileDialog::get_vbox() {
}
void FileDialog::_notification(int p_what) {
+
+ if (p_what==NOTIFICATION_ENTER_TREE) {
+
+ refresh->set_icon(get_icon("Reload","EditorIcons"));
+ }
if (p_what==NOTIFICATION_DRAW) {
@@ -700,6 +705,10 @@ FileDialog::FileDialog() {
pathhb->add_child(dir);
dir->set_h_size_flags(SIZE_EXPAND_FILL);
+ refresh = memnew( ToolButton );
+ refresh->connect("pressed",this,"_update_file_list");
+ pathhb->add_child(refresh);
+
drives = memnew( OptionButton );
pathhb->add_child(drives);
drives->connect("item_selected",this,"_select_drive");