1
0
Fork 0
mirror of synced 2024-09-30 09:17:37 +13:00

MangoHudSettings: fix label capitalization

This commit is contained in:
loathingKernel 2024-06-15 17:46:34 +03:00
parent d58c5a612f
commit c7436700fd
No known key found for this signature in database
GPG key ID: CE0C72D0B53821FD

View file

@ -305,9 +305,9 @@ class MangoHudSettings(OverlaySettings):
OverlayCheckBox("gpu_power", self.tr("GPU power consumption")),
]
form = [
(OverlayNumberInput("fps_limit", 0), self.tr("FPS Limit")),
(OverlaySelectInput("vsync", mangohud_vsync), self.tr("Vulkan VSync")),
(OverlaySelectInput("gl_vsync", mangohud_gl_vsync), self.tr("OpenGL VSync")),
(OverlayNumberInput("fps_limit", 0), self.tr("FPS limit")),
(OverlaySelectInput("vsync", mangohud_vsync), self.tr("Vulkan vsync")),
(OverlaySelectInput("gl_vsync", mangohud_gl_vsync), self.tr("OpenGL vsync")),
(OverlayNumberInput("font_size", 24), self.tr("Font size")),
(OverlaySelectInput("position", mangohud_position), self.tr("Position")),
]