1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 06:17:35 +00:00

Solitaire: Bump stacked cards down to reveal suit

Stacks of cards currently cover the suit completely and players must
click-and-drag cards out of the way to see the suit beneath other cards.
This bumps the stacks down a bit to let players peek the suit without
having to take any action.
This commit is contained in:
Timothy Flynn 2021-05-04 13:02:54 -04:00 committed by Andreas Kling
parent 83dca542bb
commit cfc3a2ebac

View file

@ -57,7 +57,7 @@ private:
case Foundation: case Foundation:
return { 2, 1, 4, 1 }; return { 2, 1, 4, 1 };
case Normal: case Normal:
return { 0, 15, 1, 3 }; return { 0, 20, 1, 3 };
case Stock: case Stock:
case Waste: case Waste:
return { 2, 1, 8, 1 }; return { 2, 1, 8, 1 };