diff options
author | saturneric <[email protected]> | 2024-01-15 17:19:34 +0000 |
---|---|---|
committer | saturneric <[email protected]> | 2024-01-15 17:19:34 +0000 |
commit | 34b51c5e0915cbb11c80029aaa05d96c7115fac3 (patch) | |
tree | abb530d5d93ab09ff95844b000958b79c07cd3c5 /src/init.cpp | |
parent | fix: reload ui should not destroy core and module system (diff) | |
download | GpgFrontend-34b51c5e0915cbb11c80029aaa05d96c7115fac3.tar.gz GpgFrontend-34b51c5e0915cbb11c80029aaa05d96c7115fac3.zip |
fix: slove the languange settings issue
Diffstat (limited to 'src/init.cpp')
-rw-r--r-- | src/init.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/init.cpp b/src/init.cpp index 3720056e..6f30791f 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -78,13 +78,13 @@ void InitGlobalPathEnv() { bool use_custom_gnupg_install_path = GlobalSettingStation::GetInstance() .GetSettings() - .value("general/use_custom_gnupg_install_path", false) + .value("basic/use_custom_gnupg_install_path", false) .toBool(); QString custom_gnupg_install_path = GlobalSettingStation::GetInstance() .GetSettings() - .value("general/custom_gnupg_install_path") + .value("basic/custom_gnupg_install_path") .toString(); // add custom gnupg install path into env $PATH |