kwin-effects-forceblur icon indicating copy to clipboard operation
kwin-effects-forceblur copied to clipboard

Menus are always blurred on Wayland, even if "Blur menus" is disabled

Open taj-ny opened this issue 11 months ago • 0 comments

The window type must be different on Wayland for some reason, since EffectWindow::isMenu(), EffectWindow::isDropdownMenu() and EffectWindow::isPopupMenu() all return false. It could be a KWin bug, as the Translucency effect uses the same properties and doesn't work on Wayland as well.

if (window.dialog === true) {
    checkWindow(window, translucencyEffect.settings.dialogs);
} else if (window.dropdownMenu === true) {
    checkWindow(window, translucencyEffect.settings.dropdownmenus);
} else if (window.popupMenu === true) {
    checkWindow(window, translucencyEffect.settings.popupmenus);
} else if (window.comboBox === true) {
    checkWindow(window, translucencyEffect.settings.comboboxpopups);
} else if (window.menu === true) {
    checkWindow(window, translucencyEffect.settings.tornoffmenus);
}

taj-ny avatar Mar 24 '24 08:03 taj-ny