Skip to content

Commit

Permalink
Fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
mwestphal committed Jan 24, 2025
1 parent b3e9dad commit fa87e2f
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions application/F3DColorMapTools.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -26,17 +26,14 @@ fs::path Find(const std::string& str)
}
}

std::vector<fs::path> dirsToCheck
{
F3DSystemTools::GetUserConfigFileDirectory() / "colormaps",
std::vector<fs::path> dirsToCheck{ F3DSystemTools::GetUserConfigFileDirectory() / "colormaps",
#ifdef __APPLE__
"/usr/local/etc/f3d/colormaps",
"/usr/local/etc/f3d/colormaps",
#endif
#if defined(__linux__) || defined(__FreeBSD__)
"/etc/f3d/colormaps", "/usr/share/f3d/colormaps",
"/etc/f3d/colormaps", "/usr/share/f3d/colormaps",
#endif
F3DSystemTools::GetBinaryResourceDirectory() / "colormaps"
};
F3DSystemTools::GetBinaryResourceDirectory() / "colormaps" };

for (const fs::path& dir : dirsToCheck)
{
Expand Down

0 comments on commit fa87e2f

Please sign in to comment.