Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAlan Aguiar <alanjas@hotmail.com>2014-01-13 00:09:11 (GMT)
committer Alan Aguiar <alanjas@hotmail.com>2014-01-13 00:09:11 (GMT)
commitb6705b01e2aacae230ba72930e8ae00d1b777f36 (patch)
treebb9f63c53640c87995c2bf4469caaf4e5904acde /src
parent5e607a34eb73d1dbada8671380bae74f444f201e (diff)
remove double parentesis
Diffstat (limited to 'src')
-rw-r--r--src/api/Label.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/api/Label.py b/src/api/Label.py
index 4ec1575..b5f3f70 100644
--- a/src/api/Label.py
+++ b/src/api/Label.py
@@ -18,8 +18,8 @@ class CLabel(pygame.sprite.Sprite):
pygame.sprite.Sprite.__init__(self)
self.font = pygame.font.Font(font_path + fontName, 20)
self.text = ""
- self.fgColor = ((0x00, 0x00, 0x00))
- self.bgColor = ((0xFF, 0xFF, 0xFF))
+ self.fgColor = (0x00, 0x00, 0x00)
+ self.bgColor = (0xFF, 0xFF, 0xFF)
self.transparent = transparent
self.center = (0, 0)
self.size = (0, 0)