Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/Interfaz.py
diff options
context:
space:
mode:
Diffstat (limited to 'Interfaz.py')
-rw-r--r--Interfaz.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/Interfaz.py b/Interfaz.py
index 82433ec..93c145d 100644
--- a/Interfaz.py
+++ b/Interfaz.py
@@ -19,7 +19,9 @@
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
-import pygame, gc
+import pygame
+import gc
+
from pygame.locals import *
gc.enable()
@@ -87,7 +89,7 @@ class Interfaz(pygame.sprite.OrderedUpdates):
self.boton_musica= JAMButton("", self.imagenes_audio[0])
self.boton_musica.set_imagen(origen= self.imagenes_audio[0])
self.boton_musica.set_tamanios(tamanio= (ancho_botones, 70))
- y -= separador + self.boton_musica.get_tamanio()[1]
+ y -= separador + self.boton_musica.get_tamanio()[1]
self.boton_musica.set_posicion(punto=(x,y))
self.posicion_boton_audio = (x,y)