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:
parent
b751af02ea
commit
91eb1972c1
1 changed files with 1 additions and 1 deletions
|
@ -84,7 +84,7 @@ void ColorBlindnessCorrectionEffect::loadData()
|
|||
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()) {
|
||||
qCCritical(KWIN_COLORBLINDNESS_CORRECTION) << "Failed to load the shader!";
|
||||
|
|
Loading…
Reference in a new issue