ui(raylib): fix typos (#35030)

This commit is contained in:
Cameron Clough
2025-04-18 01:11:22 +01:00
committed by GitHub
parent a4cdc96a99
commit 4f913f0cfb
+3 -3
View File
@@ -73,7 +73,7 @@ class GuiApplication:
for font in self._fonts.values():
rl.unload_font(font)
self._fonts = []
self._fonts = {}
rl.close_window()
@@ -90,8 +90,8 @@ class GuiApplication:
rl.end_drawing()
self._monitor_fps()
def font(self, font_wight: FontWeight=FontWeight.NORMAL):
return self._fonts[font_wight]
def font(self, font_weight: FontWeight=FontWeight.NORMAL):
return self._fonts[font_weight]
@property
def width(self):