diff options
author | Max Hilbrunner <mhilbrunner@users.noreply.github.com> | 2018-06-07 17:46:16 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-07 17:46:16 +0200 |
commit | 0d7fa5f6eef41c4137a45d6e2f9650efd6ab9d00 (patch) | |
tree | 7a520c6e69a9453e80bcba6c164eef16be31f88f | |
parent | 9d23f1bf1a5b8c1b17a69d928834f92635eedd78 (diff) | |
parent | e3fcb7b0114d9efa0fc2e864ced58723ce1bdf23 (diff) |
Merge pull request #19373 from AlexHolly/filedialog-lineedit-changed-signal
Expose lineedit
-rw-r--r-- | scene/gui/file_dialog.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scene/gui/file_dialog.cpp b/scene/gui/file_dialog.cpp index 4bd92d888d..25cb74a494 100644 --- a/scene/gui/file_dialog.cpp +++ b/scene/gui/file_dialog.cpp @@ -777,6 +777,7 @@ void FileDialog::_bind_methods() { ClassDB::bind_method(D_METHOD("set_mode", "mode"), &FileDialog::set_mode); ClassDB::bind_method(D_METHOD("get_mode"), &FileDialog::get_mode); ClassDB::bind_method(D_METHOD("get_vbox"), &FileDialog::get_vbox); + ClassDB::bind_method(D_METHOD("get_line_edit"), &FileDialog::get_line_edit); ClassDB::bind_method(D_METHOD("set_access", "access"), &FileDialog::set_access); ClassDB::bind_method(D_METHOD("get_access"), &FileDialog::get_access); ClassDB::bind_method(D_METHOD("set_show_hidden_files", "show"), &FileDialog::set_show_hidden_files); |