Changed the menu entry name for the textlist quick scrolling overlay option.

This commit is contained in:
Leon Styhre 2023-01-13 13:30:30 +01:00
parent 54dd4ea6bb
commit 648252f639

View file

@ -755,7 +755,7 @@ void GuiMenu::openUIOptions()
// Enable quick list scrolling overlay.
auto listScrollOverlay = std::make_shared<SwitchComponent>();
listScrollOverlay->setState(Settings::getInstance()->getBool("ListScrollOverlay"));
s->addWithLabel("ENABLE QUICK LIST SCROLLING OVERLAY", listScrollOverlay);
s->addWithLabel("ENABLE TEXTLIST QUICK SCROLLING OVERLAY", listScrollOverlay);
s->addSaveFunc([listScrollOverlay, s] {
if (listScrollOverlay->getState() !=
Settings::getInstance()->getBool("ListScrollOverlay")) {