Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/conozco.py
diff options
context:
space:
mode:
authorAlan Aguiar <alanjas@hotmail.com>2013-12-25 17:14:29 (GMT)
committer Alan Aguiar <alanjas@hotmail.com>2013-12-25 17:14:29 (GMT)
commite995825e47cadf22de98a80a1390e0ac40c15d8e (patch)
tree61bf647bbcceabd9e3b600c2bb7f58c2a01fdc40 /conozco.py
parent2159dd19e08e4c7466d1dffddb4868add40ca9e0 (diff)
add remove button
Diffstat (limited to 'conozco.py')
-rwxr-xr-xconozco.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/conozco.py b/conozco.py
index 0ac2618..86bf4dd 100755
--- a/conozco.py
+++ b/conozco.py
@@ -469,6 +469,7 @@ class Conozco():
x = int(image.get_width() * scale)
y = int(image.get_height() * scale)
self.fondo = pygame.transform.scale(image, (x,y))
+ self.pantalla.fill((0,0,0))
self.pantalla.blit(self.fondo, (shift_x, shift_y))
def showName(self, text, pos, font, color=(0,0,0)):
@@ -478,6 +479,7 @@ class Conozco():
self.pantalla.blit(t, r)
def update_points(self, l):
+ self.pantalla.fill((0,0,0))
self.pantalla.blit(self.fondo, (shift_x, shift_y))
for p in l:
name = p[0]