plugins/colorblindnesscorrection: Fix typo in shader path

It's colorblind*n*ess. The shader files got fixed in 3b918b44
but not the code loading them.
This commit is contained in:
Kai Uwe Broulik 2024-09-06 11:08:19 +02:00
parent b751af02ea
commit 91eb1972c1

View file

@ -84,7 +84,7 @@ void ColorBlindnessCorrectionEffect::loadData()
break; break;
} }
m_shader = ShaderManager::instance()->generateShaderFromFile(ShaderTrait::MapTexture, QString(), QStringLiteral(":/effects/colorblindnesscorrection/shaders/colorblindesscorrection.frag")); m_shader = ShaderManager::instance()->generateShaderFromFile(ShaderTrait::MapTexture, QString(), QStringLiteral(":/effects/colorblindnesscorrection/shaders/colorblindnesscorrection.frag"));
if (!m_shader->isValid()) { if (!m_shader->isValid()) {
qCCritical(KWIN_COLORBLINDNESS_CORRECTION) << "Failed to load the shader!"; qCCritical(KWIN_COLORBLINDNESS_CORRECTION) << "Failed to load the shader!";