Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/svgcard.py
diff options
context:
space:
mode:
authorGonzalo Odiard <godiard@gmail.com>2014-07-11 18:41:03 (GMT)
committer Gonzalo Odiard <godiard@gmail.com>2014-07-14 11:00:10 (GMT)
commit222c2e0873b03736df1528f9f4960125e500e641 (patch)
treed4a4c6142443247586ce698802901361ddbf9b4d /svgcard.py
parent4791831c6fe9615a9d6d6f9cf44824cdc6e8b4b9 (diff)
Remove unused align parameter in SvgCard
Diffstat (limited to 'svgcard.py')
-rw-r--r--svgcard.py9
1 files changed, 1 insertions, 8 deletions
diff --git a/svgcard.py b/svgcard.py
index 166b156..11c7285 100644
--- a/svgcard.py
+++ b/svgcard.py
@@ -59,7 +59,7 @@ class SvgCard(Gtk.EventBox):
default_props['front_text'] = {'text_color': '#ffffff'}
def __init__(self, identifier, pprops, jpeg, size,
- align, bg_color='#000000', font_name=model.DEFAULT_FONT):
+ bg_color='#000000', font_name=model.DEFAULT_FONT):
Gtk.EventBox.__init__(self)
self.bg_color = bg_color
@@ -76,7 +76,6 @@ class SvgCard(Gtk.EventBox):
self._on_animation = False
self._animation_step = 0
- self.align = align
self.text_layouts = [None, None]
self.font_name = font_name
self._highlighted = False
@@ -178,12 +177,6 @@ class SvgCard(Gtk.EventBox):
width, height = layout.get_pixel_size()
y = (self.size - height) / 2
- if flipped:
- if self.align == '2': # top
- y = 0
- elif self.align == '3': # bottom
- y = self.size - height
-
x = (self.size - width) / 2
cache_context.set_source_rgb(1, 1, 1)
cache_context.translate(x, y)