Skip to content
Snippets Groups Projects
Commit f5035a77 authored by Kai Uwe Broulik's avatar Kai Uwe Broulik 🍇
Browse files

Don't eat the left click event

Otherwise the left mouse action isn't triggered

BUG: 351277
FIXED-IN: 5.4.0
parent f5565993
No related branches found
No related tags found
No related merge requests found
......@@ -346,7 +346,10 @@ DragDrop.DropArea {
MouseArea { // unfocus any plasmoid when clicking empty desktop area
anchors.fill: parent
onClicked: root.forceActiveFocus()
onPressed: {
root.forceActiveFocus()
mouse.accepted = false // Bug 351277
}
}
Loader {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment