From 72070f95ad1002c267c51d6a93d9962ba5f144a4 Mon Sep 17 00:00:00 2001 From: Adam Honse Date: Sat, 5 Dec 2020 03:25:23 -0600 Subject: [PATCH] Fix profile deletion --- ProfileManager.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ProfileManager.cpp b/ProfileManager.cpp index d06b8274..1f578ddc 100644 --- a/ProfileManager.cpp +++ b/ProfileManager.cpp @@ -334,7 +334,7 @@ bool ProfileManager::LoadProfileWithOptions void ProfileManager::DeleteProfile(std::string profile_name) { - remove(profile_name.c_str()); + remove((configuration_directory + profile_name).c_str()); UpdateProfileList(); }