diff options
author | volzhs <volzhs@gmail.com> | 2016-11-14 08:36:01 +0900 |
---|---|---|
committer | volzhs <volzhs@gmail.com> | 2016-11-14 08:36:01 +0900 |
commit | b0cf201ea3beb473fd0498c5c7ec3b98feda88b9 (patch) | |
tree | e420aba69e199c96826577420b6f071b1d13546f /tools/editor/io_plugins | |
parent | c93c2a6be8ad0abbfd5cae4831ff2ce2200ae6f6 (diff) |
Fix crash when select target path on import 3d scene window
Diffstat (limited to 'tools/editor/io_plugins')
-rw-r--r-- | tools/editor/io_plugins/editor_scene_import_plugin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/editor/io_plugins/editor_scene_import_plugin.cpp b/tools/editor/io_plugins/editor_scene_import_plugin.cpp index cb8ec6d0bc..093f37fe00 100644 --- a/tools/editor/io_plugins/editor_scene_import_plugin.cpp +++ b/tools/editor/io_plugins/editor_scene_import_plugin.cpp @@ -894,9 +894,9 @@ void EditorSceneImportDialog::_browse() { void EditorSceneImportDialog::_browse_target() { + save_select->popup_centered_ratio(); if (save_path->get_text()!="") save_select->set_current_path(save_path->get_text()); - save_select->popup_centered_ratio(); } |