From 25c7235b484463856da86acf66f29efe9096a38c Mon Sep 17 00:00:00 2001 From: Digital Artifex <7929434+DigitalArtifex@users.noreply.github.com> Date: Wed, 24 Sep 2025 01:01:54 -0400 Subject: [PATCH] Bugfix for shader compiling --- plugin/ShaderToySearchModel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/ShaderToySearchModel.cpp b/plugin/ShaderToySearchModel.cpp index fb51758..74a2e54 100644 --- a/plugin/ShaderToySearchModel.cpp +++ b/plugin/ShaderToySearchModel.cpp @@ -967,7 +967,7 @@ void ShaderToySearchModel::replaceSource(qsizetype index, QString uuid, QString if(index < 0 || index >= m_data.count() || m_data.count() == 0) return; - QString tempLocation = QStringLiteral("%1/komplex/src/%2").arg(QStandardPaths::writableLocation(QStandardPaths::TempLocation), m_data[index].metadata.id); + QString tempLocation = QStringLiteral("%1/komplex/build/%2").arg(QStandardPaths::writableLocation(QStandardPaths::TempLocation), m_data[index].metadata.id); QFile sourceFile(source); QFileInfo sourceInfo(source);