diff --git a/data/images/cards/bottoms/french/bottom02-n.png b/data/images/cards/bottoms/french/bottom02-n.png index f8095d12..7c1e5f25 100644 Binary files a/data/images/cards/bottoms/french/bottom02-n.png and b/data/images/cards/bottoms/french/bottom02-n.png differ diff --git a/data/images/cards/bottoms/french/bottom02.png b/data/images/cards/bottoms/french/bottom02.png index 602c543b..7c1e5f25 100644 Binary files a/data/images/cards/bottoms/french/bottom02.png and b/data/images/cards/bottoms/french/bottom02.png differ diff --git a/data/images/cards/bottoms/french/bottom06-n.png b/data/images/cards/bottoms/french/bottom06-n.png index b4571ca7..9c87ed99 100644 Binary files a/data/images/cards/bottoms/french/bottom06-n.png and b/data/images/cards/bottoms/french/bottom06-n.png differ diff --git a/data/images/cards/bottoms/french/bottom06.png b/data/images/cards/bottoms/french/bottom06.png index 37346fb7..9c87ed99 100644 Binary files a/data/images/cards/bottoms/french/bottom06.png and b/data/images/cards/bottoms/french/bottom06.png differ diff --git a/data/images/cards/bottoms/french/bottom07-n.png b/data/images/cards/bottoms/french/bottom07-n.png index 3c62c3f7..b4baa883 100644 Binary files a/data/images/cards/bottoms/french/bottom07-n.png and b/data/images/cards/bottoms/french/bottom07-n.png differ diff --git a/data/images/cards/bottoms/french/bottom07.png b/data/images/cards/bottoms/french/bottom07.png index aa950160..b4baa883 100644 Binary files a/data/images/cards/bottoms/french/bottom07.png and b/data/images/cards/bottoms/french/bottom07.png differ diff --git a/data/images/redeal.png b/data/images/redeal.png new file mode 100644 index 00000000..6a4a2214 Binary files /dev/null and b/data/images/redeal.png differ diff --git a/data/images/stopsign.png b/data/images/stopsign.png new file mode 100644 index 00000000..c629765c Binary files /dev/null and b/data/images/stopsign.png differ diff --git a/pysollib/move.py b/pysollib/move.py index 0fb842f6..08b3cfb4 100644 --- a/pysollib/move.py +++ b/pysollib/move.py @@ -163,8 +163,10 @@ class AFlipAndMoveMove(AtomicMove): x, y = to_stack.getPositionForNextCard() game.animatedMoveTo(from_stack, to_stack, cards, x, y, frames=self.frames, shadow=0) - c = from_stack.removeCard() - to_stack.addCard(c) + c = from_stack.removeCard(update=False) + to_stack.addCard(c, update=False) + from_stack.updateText() + to_stack.updateText() def redo(self, game): self._doMove(game, game.allstacks[self.from_stack_id], diff --git a/pysollib/tile/tkutil.py b/pysollib/tile/tkutil.py index a698a4a0..5271ecb5 100644 --- a/pysollib/tile/tkutil.py +++ b/pysollib/tile/tkutil.py @@ -370,7 +370,7 @@ def createBottom(image, color='white', backfile=None): w, h = im.size size = (w-th*2, h-th*2) tmp = Image.new('RGBA', size, color) - tmp.putalpha(40) + tmp.putalpha(60) mask = out.resize(size, Image.ANTIALIAS) out.paste(tmp, (th,th), mask) if backfile: diff --git a/pysollib/tk/tkutil.py b/pysollib/tk/tkutil.py index a698a4a0..5271ecb5 100644 --- a/pysollib/tk/tkutil.py +++ b/pysollib/tk/tkutil.py @@ -370,7 +370,7 @@ def createBottom(image, color='white', backfile=None): w, h = im.size size = (w-th*2, h-th*2) tmp = Image.new('RGBA', size, color) - tmp.putalpha(40) + tmp.putalpha(60) mask = out.resize(size, Image.ANTIALIAS) out.paste(tmp, (th,th), mask) if backfile: