https://bugs.kde.org/show_bug.cgi?id=455355
--- Comment #3 from Christian (Fuchs) <k...@fuchsnet.ch> --- A very crude way to get that behaviour again would be to modify the main.qml of windowview to onWindowClicked: { if (eventPoint.event.button == Qt.MiddleButton) { window.closeWindow(); } else if (eventPoint.event.button == Qt.RightButton) { window.desktop = KWinComponents.Workspace.currentDesktop; } else { return; } } but imho this should be configurable, as in: users can configure what the left, right and middle button do, possibilities being activate, pull, close, nothing. Plus probably there should be some checks, e.g. I have no idea how currentDesktop behaves in some edge cases / on Wayland, and https://develop.kde.org/docs/extend/plasma/kwin/api/#read-write-properties is a bit bare. But if you want to see what the functionality would do: the above will do just that. -- You are receiving this mail because: You are watching all bug changes.