Skip to content

Small Space drawer improvements

Joshua Goins requested to merge work/redstrate/small-space-improvements into master

I added icons to the context menu, like in the room context menu:

image

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? 😄

Merge request reports