From c820c9bac4aff262d8cc4c6571792e6d52dc0f74 Mon Sep 17 00:00:00 2001 From: Terry MacDonald Date: Wed, 22 Sep 2021 08:22:57 +1200 Subject: [PATCH] Fixed incorrect return value from ApplyProfile Fixes #41. Silly error from previous return value. --- DisplayMagicianShared/ProfileRepository.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DisplayMagicianShared/ProfileRepository.cs b/DisplayMagicianShared/ProfileRepository.cs index f6119d5..30d5230 100644 --- a/DisplayMagicianShared/ProfileRepository.cs +++ b/DisplayMagicianShared/ProfileRepository.cs @@ -936,7 +936,7 @@ namespace DisplayMagicianShared else { SharedLogger.logger.Trace($"ProfileRepository/ApplyProfile: Successfully applied the {profile.VideoMode.ToString("G")} Profile!"); - return ApplyProfileResult.Error; + return ApplyProfileResult.Successful; } }