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-05-07 17:51:35 (GMT)
committer Ignacio Rodríguez <ignaciorodriguez@sugarlabs.org>2013-05-07 17:51:35 (GMT)
commit8ef61f02b2bfb1f8dd785ac736a2257a345aa15e (patch)
tree3438e2da4ee972d2fce6f88bce31a284af3e2394
parent990e241d7d382c08b9821bf0ca7e8208076f4e4b (diff)
Cambios con respecto a Globales.
-rw-r--r--Widgets.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Widgets.py b/Widgets.py
index 28a2214..078cf50 100644
--- a/Widgets.py
+++ b/Widgets.py
@@ -8,7 +8,7 @@ from gi.repository import Gtk
from gi.repository import Gdk
from gi.repository import GdkPixbuf
from gi.repository import GObject
-from Globales import *
+import Globales as G
def get_pixbuf(path, x=None, y=None):
@@ -24,7 +24,7 @@ class LogoJoven(Gtk.Image):
def __init__(self):
super(LogoJoven, self).__init__()
- self.set_from_pixbuf(get_pixbuf(LOGO_JOVEN))
+ self.set_from_pixbuf(get_pixbuf(G.LOGO_JOVEN))
self.show_all()
class Marcadores(Gtk.TreeView):