From 79f95a1996d9afc7cd52d7673065cdf026d04af6 Mon Sep 17 00:00:00 2001 From: Aleksey Lim Date: Sat, 17 Oct 2009 02:33:46 +0000 Subject: Skip full flipping animation if second speaking card is correct --- (limited to 'cardtable.py') diff --git a/cardtable.py b/cardtable.py index 0a39a62..1f251e2 100644 --- a/cardtable.py +++ b/cardtable.py @@ -226,8 +226,8 @@ class CardTable(gtk.EventBox): def flop_card(self, widget, identifer): self.id2cd.get(identifer).flop() - def flip_card(self, widget, identifer): - self.id2cd.get(identifer).flip() + def flip_card(self, widget, identifer, full_animation): + self.id2cd.get(identifer).flip(full_animation) def cement_card(self, widget, identifer): self.id2cd.get(identifer).cement() -- cgit v0.9.1