mac: spell font name correctly

This commit is contained in:
Richard Barber
2020-02-17 12:21:45 -08:00
parent 53ccd55b35
commit 097375e543
2 changed files with 3 additions and 3 deletions

View File

@@ -40,5 +40,5 @@ CustomProfileBuilder=
[GUI] [GUI]
# Set the included font as default # Set the included font as default
FontFamily=DroidSansMonoSlashed Regular FontFamily=Droid Sans Mono Slashed Regular
CPFontFamily=DroidSansMonoSlashed Regular CPFontFamily=Droid Sans Mono Slashed Regular

View File

@@ -2278,7 +2278,7 @@ void Options::load(bool lightweight)
homebuf[homelength-44] = '\0'; // Truncate path to just ${HOME}/Library homebuf[homelength-44] = '\0'; // Truncate path to just ${HOME}/Library
std::string homeconfig{homebuf}; std::string homeconfig{homebuf};
std::strcat(&homeconfig[0], "/Application Support/RawTherapee/config"); std::strcat(&homeconfig[0], "/Application Support/RawTherapee/config");
path = homebuf.c_str(); path = homeconfig.c_str();
std::cout<<"config="<<path<<std::endl; std::cout<<"config="<<path<<std::endl;
#else #else
path = g_getenv("RT_SETTINGS"); path = g_getenv("RT_SETTINGS");