From 80fbc11e1f3dd74899640b6f596bc850020cda8a Mon Sep 17 00:00:00 2001 From: pushfoo <36696816+pushfoo@users.noreply.github.com> Date: Fri, 26 Jul 2024 03:59:39 -0400 Subject: [PATCH] Type fix --- arcade/gui/experimental/password_input.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arcade/gui/experimental/password_input.py b/arcade/gui/experimental/password_input.py index b6486ca489..78c3e7bffb 100644 --- a/arcade/gui/experimental/password_input.py +++ b/arcade/gui/experimental/password_input.py @@ -75,7 +75,7 @@ def do_render(self, surface: Surface): anchor_x="left", anchor_y="bottom", align="left", - width=self.width, + width=int(self.width), font_name=self._font_name, font_size=self._font_size, color=self._asterisk_color,