From 0646f022eb232e8aa2d20c85548da3d842772ba6 Mon Sep 17 00:00:00 2001
From: Flashfyre <flashfireex@gmail.com>
Date: Wed, 28 Feb 2024 23:21:31 -0500
Subject: [PATCH] Fix ball select UI size

---
 src/ui/ball-ui-handler.ts | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/ui/ball-ui-handler.ts b/src/ui/ball-ui-handler.ts
index bead7e58f6b..8c9a0f8feae 100644
--- a/src/ui/ball-ui-handler.ts
+++ b/src/ui/ball-ui-handler.ts
@@ -25,7 +25,7 @@ export default class BallUiHandler extends UiHandler {
     this.pokeballSelectContainer.setVisible(false);
     ui.add(this.pokeballSelectContainer);
 
-    this.pokeballSelectBg = addWindow(this.scene, 0, 0, 114, 96);
+    this.pokeballSelectBg = addWindow(this.scene, 0, 0, 114, 112);
     this.pokeballSelectBg.setOrigin(0, 1);
     this.pokeballSelectContainer.add(this.pokeballSelectBg);