Преглед изворни кода

Fix error emitting when called new shader dialog from resource dialog

Yuri Roubinsky пре 3 година
родитељ
комит
c34e806426
1 измењених фајлова са 3 додато и 1 уклоњено
  1. 3 1
      editor/create_dialog.cpp

+ 3 - 1
editor/create_dialog.cpp

@@ -339,8 +339,10 @@ void CreateDialog::_confirmed() {
 		memdelete(f);
 	}
 
-	emit_signal(SNAME("create"));
+	// To prevent, emitting an error from the transient window (shader dialog for example) hide this dialog before emitting the "create" signal.
 	hide();
+
+	emit_signal(SNAME("create"));
 	_cleanup();
 }