Skip to content

Commit

Permalink
fix menu detection on wayland
Browse files Browse the repository at this point in the history
  • Loading branch information
taj-ny committed Apr 20, 2024
1 parent 4eb7934 commit 2bfda9c
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 @@ -584,7 +584,7 @@ bool BlurEffect::shouldBlur(const EffectWindow *w, int mask, const WindowPaintDa

bool BlurEffect::shouldForceBlur(const EffectWindow *w) const
{
if ((!m_blurDocks && w->isDock()) || (!m_blurMenus && (w->isMenu() || w->isDropdownMenu() || w->isPopupMenu()))) {
if ((!m_blurDocks && w->isDock()) || (!m_blurMenus && (w->isMenu() || w->isDropdownMenu() || w->isPopupMenu() || w->isPopupWindow()))) {
return false;
}

Expand Down

0 comments on commit 2bfda9c

Please sign in to comment.