1
0
mirror of https://github.com/SerenityOS/serenity synced 2024-07-03 10:33:40 +00:00

LibCards: Move Play cards closer together horizontally

With the recent adjustments to how cards are painted, this felt too
spaced out.
This commit is contained in:
Sam Atkins 2023-10-03 17:25:54 +01:00 committed by Sam Atkins
parent ff8969bd5f
commit 2e615b5316

View File

@ -79,7 +79,7 @@ private:
case Type::Waste:
return { 0, 0, 1, 0 };
case Type::Play:
return { 20, 0, 1, 0 };
return { 15, 0, 1, 0 };
default:
return {};
}