Merge pull request #59576 from techiepriyansh/fix-multiple-instances-3.x
This commit is contained in:
commit
3000d8d140
1 changed files with 8 additions and 1 deletions
|
@ -1022,6 +1022,8 @@ public:
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
bool project_opening_initiated;
|
||||||
|
|
||||||
ProjectList();
|
ProjectList();
|
||||||
~ProjectList();
|
~ProjectList();
|
||||||
|
|
||||||
|
@ -1099,6 +1101,7 @@ ProjectList::ProjectList() {
|
||||||
add_child(_scroll_children);
|
add_child(_scroll_children);
|
||||||
|
|
||||||
_icon_load_index = 0;
|
_icon_load_index = 0;
|
||||||
|
project_opening_initiated = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
ProjectList::~ProjectList() {
|
ProjectList::~ProjectList() {
|
||||||
|
@ -1707,7 +1710,9 @@ void ProjectList::_panel_input(const Ref<InputEvent> &p_ev, Node *p_hb) {
|
||||||
|
|
||||||
emit_signal(SIGNAL_SELECTION_CHANGED);
|
emit_signal(SIGNAL_SELECTION_CHANGED);
|
||||||
|
|
||||||
if (!mb->get_control() && mb->is_doubleclick()) {
|
// Do not allow opening a project more than once using a single project manager instance.
|
||||||
|
// Opening the same project in several editor instances at once can lead to various issues.
|
||||||
|
if (!mb->get_control() && mb->is_doubleclick() && !project_opening_initiated) {
|
||||||
emit_signal(SIGNAL_PROJECT_ASK_OPEN);
|
emit_signal(SIGNAL_PROJECT_ASK_OPEN);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -2035,6 +2040,8 @@ void ProjectManager::_open_selected_projects() {
|
||||||
ERR_FAIL_COND(err);
|
ERR_FAIL_COND(err);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
_project_list->project_opening_initiated = true;
|
||||||
|
|
||||||
_dim_window();
|
_dim_window();
|
||||||
get_tree()->quit();
|
get_tree()->quit();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue