From c58b76d7cd0a0d38df64c5180f10aed418b17612 Mon Sep 17 00:00:00 2001 From: Roy Qu Date: Tue, 15 Feb 2022 22:26:24 +0800 Subject: [PATCH] fix: git auto found not correctly saved --- RedPandaIDE/settings.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RedPandaIDE/settings.cpp b/RedPandaIDE/settings.cpp index 2b61087f..f4ec5d0b 100644 --- a/RedPandaIDE/settings.cpp +++ b/RedPandaIDE/settings.cpp @@ -5155,7 +5155,7 @@ void Settings::VCS::detectGitInPath() QString oldPath = mGitPath; setGitPath(dir.filePath(GIT_PROGRAM)); if (mGitOk) { - doSave(); + save(); return; } else { mGitPath = oldPath;