2
0
Fork 0

Don't open a project in the list if Ctrl is held while double-clicking

3.2
Hugo Locurcio 2019-09-23 17:25:37 +07:00
parent a226d63f68
commit 76dd021a30
No known key found for this signature in database
GPG Key ID: 39E8F8BE30B0A49C
1 changed files with 1 additions and 1 deletions

@ -1689,7 +1689,7 @@ void ProjectList::_panel_input(const Ref<InputEvent> &p_ev, Node *p_hb) {
emit_signal(SIGNAL_SELECTION_CHANGED);
if (mb->is_doubleclick()) {
if (!mb->get_control() && mb->is_doubleclick()) {
emit_signal(SIGNAL_PROJECT_ASK_OPEN);
}
}