From c9ee7ed0044475f283c4a6e325594f83f3a3943d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=81lvaro=20Rub=C3=A9n=20Hurtado=20Maldonado?= Date: Thu, 12 Jul 2018 09:39:31 -0400 Subject: [PATCH] Joined ending of processes --- questions.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/questions.py b/questions.py index c1eb649..0cfdc66 100644 --- a/questions.py +++ b/questions.py @@ -126,7 +126,7 @@ def __init__(self,fila,pantallaTotal = True,parent=None): # ParĂ¡metros constantes: self.titulo = 'Scape Room' self.miRespuestaEnVentana = PopUp() - self.miRespuestaEnVentana.establecerAPantallaTotal() + self.thread = ThreadClass(fila) self.listaPreguntas =[] #id,pregunta,respuesta @@ -152,6 +152,7 @@ def __init__(self,fila,pantallaTotal = True,parent=None): # Al inicializarse la clase se muestra: if pantallaTotal: + self.miRespuestaEnVentana.establecerAPantallaTotal() self.showFullScreen() else: self.show()