Skip to content

Commit

Permalink
blur/fake-blur: don't mark windows with fake blur as translucent
Browse files Browse the repository at this point in the history
  • Loading branch information
taj-ny committed Jul 13, 2024
1 parent ab34036 commit c9da043
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/blur.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -518,7 +518,7 @@ void BlurEffect::prePaintWindow(EffectWindow *w, WindowPrePaintData &data, std::
}
}

if (shouldForceBlur(w) && m_settings.forceBlur.markWindowAsTranslucent) {
if (m_settings.forceBlur.markWindowAsTranslucent && !fakeBlur && shouldForceBlur(w)) {
data.setTranslucent();
}

Expand Down

0 comments on commit c9da043

Please sign in to comment.