mirror of
https://github.com/godotengine/godot.git
synced 2024-11-10 06:03:09 +00:00
Revert "update EditorDirDialog on external change, closes #4629"
This reverts commit 257d370677
.
Fixes #5620.
This commit is contained in:
parent
7ce99c23dd
commit
5184b215a9
@ -107,7 +107,6 @@ static String locale;
|
||||
|
||||
|
||||
static int init_screen=-1;
|
||||
static bool editor=false;
|
||||
|
||||
static String unescape_cmdline(const String& p_str) {
|
||||
|
||||
@ -276,7 +275,7 @@ Error Main::setup(const char *execpath,int argc, char *argv[],bool p_second_phas
|
||||
packed_data->add_pack_source(zip_packed_data);
|
||||
#endif
|
||||
|
||||
|
||||
bool editor=false;
|
||||
|
||||
while(I) {
|
||||
|
||||
@ -932,7 +931,7 @@ Error Main::setup2() {
|
||||
Globals::get_singleton()->set_custom_property_info("application/icon",PropertyInfo(Variant::STRING,"application/icon",PROPERTY_HINT_FILE,"*.png,*.webp"));
|
||||
|
||||
if (bool(GLOBAL_DEF("display/emulate_touchscreen",false))) {
|
||||
if (!OS::get_singleton()->has_touchscreen_ui_hint() && Input::get_singleton() && !editor) {
|
||||
if (!OS::get_singleton()->has_touchscreen_ui_hint() && Input::get_singleton()) {
|
||||
//only if no touchscreen ui hint, set emulation
|
||||
InputDefault *id = Input::get_singleton()->cast_to<InputDefault>();
|
||||
if (id)
|
||||
|
@ -30,7 +30,6 @@
|
||||
#include "os/os.h"
|
||||
#include "os/keyboard.h"
|
||||
#include "tools/editor/editor_settings.h"
|
||||
#include "tools/editor/editor_file_system.h"
|
||||
|
||||
|
||||
void EditorDirDialog::_update_dir(TreeItem* p_item) {
|
||||
@ -87,14 +86,11 @@ void EditorDirDialog::reload() {
|
||||
_item_collapsed(root);
|
||||
}
|
||||
|
||||
|
||||
void EditorDirDialog::_notification(int p_what) {
|
||||
|
||||
if (p_what==NOTIFICATION_ENTER_TREE) {
|
||||
reload();
|
||||
tree->connect("item_collapsed",this,"_item_collapsed",varray(),CONNECT_DEFERRED);
|
||||
EditorFileSystem::get_singleton()->connect("filesystem_changed",this,"reload");
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@ -202,7 +198,6 @@ void EditorDirDialog::_bind_methods() {
|
||||
ObjectTypeDB::bind_method(_MD("_item_collapsed"),&EditorDirDialog::_item_collapsed);
|
||||
ObjectTypeDB::bind_method(_MD("_make_dir"),&EditorDirDialog::_make_dir);
|
||||
ObjectTypeDB::bind_method(_MD("_make_dir_confirm"),&EditorDirDialog::_make_dir_confirm);
|
||||
ObjectTypeDB::bind_method(_MD("reload"),&EditorDirDialog::reload);
|
||||
|
||||
ADD_SIGNAL(MethodInfo("dir_selected",PropertyInfo(Variant::STRING,"dir")));
|
||||
}
|
||||
@ -243,6 +238,4 @@ EditorDirDialog::EditorDirDialog() {
|
||||
|
||||
get_ok()->set_text("Choose");
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
@ -53,8 +53,6 @@ class EditorDirDialog : public ConfirmationDialog {
|
||||
void _make_dir_confirm();
|
||||
|
||||
void ok_pressed();
|
||||
|
||||
|
||||
protected:
|
||||
|
||||
void _notification(int p_what);
|
||||
|
Loading…
Reference in New Issue
Block a user