diff options
author | Ignacio Etcheverry <ignalfonsore@gmail.com> | 2015-12-26 17:55:48 +0100 |
---|---|---|
committer | Ignacio Etcheverry <ignalfonsore@gmail.com> | 2015-12-26 19:15:22 +0100 |
commit | 84c5585afee3ae8605620538e02887b38ef2bc8e (patch) | |
tree | cbf71ae97828118b3b56c23677a7d8d92a9c9ae7 /scene/gui | |
parent | 1bc91848e3cee91eccaf2150a74deaf1cd84be13 (diff) |
Added reload icon to FileDialog's default theme
Diffstat (limited to 'scene/gui')
-rw-r--r-- | scene/gui/file_dialog.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/gui/file_dialog.cpp b/scene/gui/file_dialog.cpp index 22e3a81e52..9179d3a4e1 100644 --- a/scene/gui/file_dialog.cpp +++ b/scene/gui/file_dialog.cpp @@ -49,7 +49,7 @@ void FileDialog::_notification(int p_what) { if (p_what==NOTIFICATION_ENTER_TREE) { - refresh->set_icon(get_icon("Reload","EditorIcons")); + refresh->set_icon(get_icon("reload")); } if (p_what==NOTIFICATION_DRAW) { |