From 4391f6db60207e17332332bb0f70730408d6a1da Mon Sep 17 00:00:00 2001 From: Adam Honse Date: Thu, 4 Nov 2021 19:38:23 -0500 Subject: [PATCH] Attempt to fix https://gitlab.com/CalcProgrammer1/OpenRGB/-/issues/1820 by moving return statement --- ProfileManager.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ProfileManager.cpp b/ProfileManager.cpp index 316fa0bd3..d77624a0d 100644 --- a/ProfileManager.cpp +++ b/ProfileManager.cpp @@ -311,9 +311,9 @@ bool ProfileManager::LoadDeviceFromListWithOptions load_controller->colors[color_index] = temp_controller->colors[color_index]; } } - - return(true); } + + return(true); } }