From 81e90e942b8bceb4fc2e32bd7a9859c3b8829862 Mon Sep 17 00:00:00 2001 From: Leon Styhre Date: Wed, 30 Jun 2021 18:14:33 +0200 Subject: [PATCH] (Windows) OCD commit. --- es-app/src/guis/GuiMenu.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/es-app/src/guis/GuiMenu.cpp b/es-app/src/guis/GuiMenu.cpp index 808d2add4..acd194935 100644 --- a/es-app/src/guis/GuiMenu.cpp +++ b/es-app/src/guis/GuiMenu.cpp @@ -1203,7 +1203,7 @@ void GuiMenu::openOtherOptions() #if defined(_WIN64) // Switch callback. - auto launchWorkAroundToggleFunc = [launch_workaround]() { + auto launchWorkaroundToggleFunc = [launch_workaround]() { if (launch_workaround->getEnabled()) { launch_workaround->setEnabled(false); launch_workaround->setOpacity(DISABLED_OPACITY); @@ -1217,7 +1217,7 @@ void GuiMenu::openOtherOptions() getChildIndex() - 1)->setOpacity(255); } }; - run_in_background->setCallback(launchWorkAroundToggleFunc); + run_in_background->setCallback(launchWorkaroundToggleFunc); #endif mWindow->pushGui(s);