From 2e615b53161d28c0e903d111a8891715dec33057 Mon Sep 17 00:00:00 2001 From: Sam Atkins Date: Tue, 3 Oct 2023 17:25:54 +0100 Subject: [PATCH] LibCards: Move Play cards closer together horizontally With the recent adjustments to how cards are painted, this felt too spaced out. --- Userland/Libraries/LibCards/CardStack.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Userland/Libraries/LibCards/CardStack.h b/Userland/Libraries/LibCards/CardStack.h index 6fa274a050..4e3fdafee5 100644 --- a/Userland/Libraries/LibCards/CardStack.h +++ b/Userland/Libraries/LibCards/CardStack.h @@ -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 {}; }