From 574159092bbd759b9788beb33f88ac0a39ccce65 Mon Sep 17 00:00:00 2001 From: Mathieu Westphal Date: Sat, 28 Dec 2024 10:37:26 +0100 Subject: [PATCH] fixup --- library/src/window_impl.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/src/window_impl.cxx b/library/src/window_impl.cxx index af2679ef23..4c1419be19 100644 --- a/library/src/window_impl.cxx +++ b/library/src/window_impl.cxx @@ -551,7 +551,7 @@ void window_impl::SetImporter(vtkF3DMetaImporter* importer) //---------------------------------------------------------------------------- void window_impl::SetCachePath(const std::filesystem::path& cachePath) { - this->Internals->CachePath = std::filesystem::absolute(cachePath).string(); + this->Internals->CachePath = cachePath.string(); } //----------------------------------------------------------------------------