1
0
Fork 0
mirror of https://github.com/shlomif/PySolFC.git synced 2025-04-05 00:02:29 -04:00

* bugfixes

git-svn-id: file:///home/shlomif/Backup/svn-dumps/PySolFC/svnsync-repos/pysolfc/PySolFC/trunk@259 efabe8c0-fbe8-4139-b769-b5e6d273206e
This commit is contained in:
skomoroh 2010-06-14 05:55:56 +00:00
parent 312774db5a
commit 0efc590a6c
3 changed files with 12 additions and 3 deletions

View file

@ -109,6 +109,12 @@ class Pyramid_Talon(Pyramid_StackMethods, FaceUpWasteTalonStack):
return 1
return FaceUpWasteTalonStack.clickHandler(self, event)
def releaseHandler(self, event, drag, sound=True):
if self.game.app.opt.mouse_type == 'point-n-click':
drag.stack.dragMove(drag, self, sound=sound)
return
FaceUpWasteTalonStack.releaseHandler(self, event, drag, sound)
def canDealCards(self):
if not FaceUpWasteTalonStack.canDealCards(self):
return False

View file

@ -30,8 +30,8 @@ PACKAGE = 'PySolFC'
TITLE = 'PySol'
PACKAGE_URL = 'http://pysolfc.sourceforge.net/'
VERSION = '2.0'
VERSION_TUPLE = (2, 0)
VERSION = '2.0.1'
VERSION_TUPLE = (2,0,1)
# Tk windowing system (auto set up in init.py)
WIN_SYSTEM = 'x11' # win32, x11, aqua, classic

View file

@ -902,6 +902,9 @@ class Stack:
return True
return False
def resize(self, xf, yf):
print 'resize', self
def basicShallHighlightSameRank(self, card):
# by default all open stacks are available for highlighting
assert card in self.cards
@ -1313,7 +1316,7 @@ class Stack:
images = self.game.app.images
cx, cy = cards[0].x, cards[0].y
ddx, ddy = cx-cards[-1].x, cy-cards[-1].y
if TOOLKIT == 'tk' and Image and Image.VERSION > '1.1.7': # use PIL
if TOOLKIT == 'tk' and Image and Image.VERSION >= '1.1.7': # use PIL
c0 = cards[-1]
if self.CARD_XOFFSET[0] < 0: c0 = cards[0]
if self.CARD_YOFFSET[0] < 0: c0 = cards[0]