Small Space drawer improvements
I added icons to the context menu, like in the room context menu:
I modified the TapHandler to prevent it from activating the item delegate underneath, although there's a small visual bug. If you right-click the delegate down
is still activated but the delegate itself isn't checked. I'm not sure what's going on here, but changing this line in kirigami-addons' RoundedItemDelegate:
-color: if (root.highlighted || root.checked || (root.down && !root.checked) || root.visualFocus) {
+color: if (root.highlighted || root.checked || root.visualFocus) {
@carlschwan do you have an idea how to fix this? or maybe this diff is sufficient?