From 648252f6390462ccfeafa2ed1baefdf1c0097df0 Mon Sep 17 00:00:00 2001 From: Leon Styhre Date: Fri, 13 Jan 2023 13:30:30 +0100 Subject: [PATCH] Changed the menu entry name for the textlist quick scrolling overlay option. --- es-app/src/guis/GuiMenu.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/es-app/src/guis/GuiMenu.cpp b/es-app/src/guis/GuiMenu.cpp index beb5aa887..5e6bacdbe 100644 --- a/es-app/src/guis/GuiMenu.cpp +++ b/es-app/src/guis/GuiMenu.cpp @@ -755,7 +755,7 @@ void GuiMenu::openUIOptions() // Enable quick list scrolling overlay. auto listScrollOverlay = std::make_shared(); 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")) {