Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIgnacio Rodríguez <ignaciorodriguez@sugarlabs.org>2013-03-23 00:03:27 (GMT)
committer Ignacio Rodríguez <ignaciorodriguez@sugarlabs.org>2013-03-23 00:03:27 (GMT)
commit5370e9ba038af45b7535a14debe62eefe0b65b1f (patch)
treebea5289ddb58bc4510d873240f81745e5aeb55c5
parent5759d41194ad4c48a3377237ceaa370201796e8d (diff)
Ahora dibuja las respuestas.
-rw-r--r--Widgets.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/Widgets.py b/Widgets.py
index 6df71ea..49f3d73 100644
--- a/Widgets.py
+++ b/Widgets.py
@@ -164,6 +164,12 @@ class TablaPeriodica(gtk.EventBox):
pregunta = Pregunta(G.PREGUNTAS[2]["pregunta"])
self.tabla.attach(pregunta, 3, 13, 1, 2)
+ Actual = 1
+ for x in G.PREGUNTAS[2]["opciones"]:
+ print x
+ pregunta = Pregunta(x)
+ self.tabla.attach(pregunta, 3, 13, Actual, Actual + 1)
+ Actual += 1
def set_colores(self, boton):
for elemen in G.COLORS: