Left a duplicate string in, removing.

This commit is contained in:
Henrik Rydgård 2024-01-25 16:11:54 +01:00
parent d49f77d8cf
commit f590acec78

View file

@ -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);
}