https://bugs.kde.org/show_bug.cgi?id=423688

Noah Davis <noaha...@gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
     Ever confirmed|0                           |1
             Status|REPORTED                    |CONFIRMED
                 CC|                            |noaha...@gmail.com

--- Comment #1 from Noah Davis <noaha...@gmail.com> ---
Confirmed with 5.26.1.

I think the issue is in the `MouseEventListener` of
plasma-desktop/applets/kicker/package/contents/ui/ItemListView.qml

```
MouseEventListener {
    id: listener

    anchors.fill: parent

    hoverEnabled: true

    onContainsMouseChanged: {
        listView.eligibleWidth = listView.width;

        if (containsMouse) { // <-- This should be overridden or avoided when
the menu is opened
            resetIndexTimer.stop();
            itemList.forceActiveFocus();
        } else if ((!itemList.childDialog || !dialog)
            && (!currentItem || !currentItem.menu.opened)) {
            resetIndexTimer.start();
        }
    }
// [snip]
}
```

-- 
You are receiving this mail because:
You are watching all bug changes.

Reply via email to