Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGonzalo Odiard <godiard@gmail.com>2014-07-11 18:31:20 (GMT)
committer Gonzalo Odiard <godiard@gmail.com>2014-07-14 11:00:10 (GMT)
commit4791831c6fe9615a9d6d6f9cf44824cdc6e8b4b9 (patch)
tree85075435d95d3269f5ec41cb3a45db4f8a03f311
parent4f23fb7b04b6c31aa6ed3991baf8daca6cf21cc8 (diff)
Remove unusued current_face
-rw-r--r--svgcard.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/svgcard.py b/svgcard.py
index 21bd1bc..166b156 100644
--- a/svgcard.py
+++ b/svgcard.py
@@ -95,7 +95,6 @@ class SvgCard(Gtk.EventBox):
if len(self.props['back_text'].get('card_text', '')) > 0:
self.show_text = True
- self.current_face = 'back'
self._cached_surface = {True: None, False: None}
@@ -275,7 +274,6 @@ class SvgCard(Gtk.EventBox):
def _finish_flip(self):
self._on_animation = False
- self.current_face = 'front'
self.flipped = True
self.queue_draw()
@@ -299,7 +297,6 @@ class SvgCard(Gtk.EventBox):
def _finish_flop(self):
self._on_animation = False
- self.current_face = 'back'
if len(self.props['back_text'].get('card_text', '')) > 0:
self.show_text = True
else: