From 2d5c69503eb1a05c71eca5d59a05ae618edc6207 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladimir=20Kokovi=C4=87?= Date: Sat, 16 Apr 2016 19:00:49 -0400 Subject: [PATCH] Ensure runtime settings are synced after they are updated. --- runtime/pgAdmin4.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/runtime/pgAdmin4.cpp b/runtime/pgAdmin4.cpp index f21bc196f..f8014968f 100644 --- a/runtime/pgAdmin4.cpp +++ b/runtime/pgAdmin4.cpp @@ -108,6 +108,7 @@ int main(int argc, char * argv[]) { settings.setValue("PythonPath", pythonpath); settings.setValue("ApplicationPath", applicationpath); + settings.sync(); } exit(1);