From f590acec78d69b1052bee49e004f1aa2fa2f8068 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henrik=20Rydg=C3=A5rd?= Date: Thu, 25 Jan 2024 16:11:54 +0100 Subject: [PATCH] Left a duplicate string in, removing. --- UI/DevScreens.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/UI/DevScreens.cpp b/UI/DevScreens.cpp index 3594a7104a..28d6292caf 100644 --- a/UI/DevScreens.cpp +++ b/UI/DevScreens.cpp @@ -801,7 +801,7 @@ void SystemInfoScreen::CreateTabs() { vulkanFeatures->Add(new TextView(feature, new LayoutParams(FILL_PARENT, WRAP_CONTENT)))->SetFocusable(true); } - CollapsibleSection *presentModes = gpuExtensions->Add(new CollapsibleSection(si->T("Present Modes"))); + CollapsibleSection *presentModes = gpuExtensions->Add(new CollapsibleSection(si->T("Present modes"))); for (auto mode : draw->GetPresentModeList(di->T("Current"))) { presentModes->Add(new TextView(mode, new LayoutParams(FILL_PARENT, WRAP_CONTENT)))->SetFocusable(true); }