diff --git a/rtgui/options.cc b/rtgui/options.cc index fad4e975..4c08e22b 100644 --- a/rtgui/options.cc +++ b/rtgui/options.cc @@ -118,11 +118,13 @@ void Options::updatePaths() } } } else { + std::cout << "profilePath: " << profilePath << std::endl; globalProfilePath = profilePath; } } else { tmpPath = Glib::build_filename (argv0, "profiles"); + std::cout << "tmpPath1: " << tmpPath << std::endl; if (checkDirPath (tmpPath, "Error: the global's profiles' path doesn't point to a directory or doesn't exist!\n")) { globalProfilePath = tmpPath; } @@ -153,6 +155,7 @@ void Options::updatePaths() // common directory // directory name set in options is ignored, we use the default directory name tmpPath = Glib::build_filename (argv0, "profiles"); + std::cout << "tmpPath2: " << tmpPath << std::endl; if (checkDirPath (tmpPath, "Error: no global profiles' directory found!\n")) { globalProfilePath = tmpPath; @@ -205,6 +208,7 @@ void Options::updatePaths() if (loadSaveProfilePath.empty() || !Glib::file_test (loadSaveProfilePath, Glib::FILE_TEST_EXISTS) || !Glib::file_test (loadSaveProfilePath, Glib::FILE_TEST_IS_DIR)) { loadSaveProfilePath = preferredPath; + std::cout << "loadSaveProfilePath: " << loadSaveProfilePath << std::endl; } if (lastBWCurvesDir.empty() || !Glib::file_test (lastBWCurvesDir, Glib::FILE_TEST_EXISTS) || !Glib::file_test (lastBWCurvesDir, Glib::FILE_TEST_IS_DIR)) {